type Log = (type: 'error' | 'warn', message: string) => void; export declare const log: Log; export declare const warning: (message: string) => void; export declare const error: (message: string) => void; export {};