export type LogLevel = 'info' | 'warn' | 'error'; export declare function log(level: LogLevel, message: string): void;