export interface ConsoleFormatOptions { maxLength?: number; maxDepth?: number; maxArrayLength?: number; maxStringLength?: number; } export declare function formatValueForConsole(value: unknown, options?: ConsoleFormatOptions): string; export declare function logSanitizedError(label: string, error: unknown, options?: ConsoleFormatOptions): void;