/** Structured log data to include with the message. */ export type LogData = Record; /** A callable logger instance. */ export type LogFn = (msg: string, data?: LogData) => void; export declare function fileURLToPath(uri: string): string;