import { type LoadComponentsReturnType } from 'next/dist/server/load-components'; export type ManifestItem = { id: number | string; files: string[]; }; export type ReactLoadableManifest = { [moduleId: string]: ManifestItem; }; export type ErrorModule = typeof import('next/dist/server/route-modules/pages/builtin/_error'); declare function loadDefaultErrorComponentsImpl(distDir: string): Promise>; export declare const loadDefaultErrorComponents: typeof loadDefaultErrorComponentsImpl; export {};