import type { FrontendErrorStackFrame } from "./types.js"; export declare const MAX_MESSAGE_LENGTH = 2000; export declare const MAX_STACK_TRACE_LENGTH = 32000; export declare const MAX_COMPONENT_STACK_LENGTH = 16000; export declare const MAX_STACK_FRAMES = 20; export declare function normalizeRoute(value: unknown): string | undefined; export declare function normalizeFrameFile(value: unknown): string; export declare function parseStackFrames(stack: unknown): FrontendErrorStackFrame[]; export declare function normalizeIdentifier(value: unknown, fallback: string): string; export declare function errorDetails(error: unknown): { errorType: string; message: string; stackTrace?: string; stackFrames: FrontendErrorStackFrame[]; digest?: string; }; //# sourceMappingURL=normalize.d.ts.map