export interface BetterErrorData { name: string; title: string; message?: string | ((...parameters: any) => string) | undefined; hint?: string | ((...parameters: any) => string) | undefined; } /** * */ export declare const FailedToLoadModuleSSR: { readonly name: "FailedToLoadModuleSSR"; readonly title: "Could not import file."; readonly message: (importName: string) => string; readonly hint: "This is often caused by a typo in the import path. Please make sure the file exists."; }; //# sourceMappingURL=errors-data.d.ts.map