declare const log: (level: 'INFO' | 'WARN' | 'ERROR', requestId: string, message: string, params: {
    [name: string]: string | number | boolean | object;
}) => void;
declare const debug: (requestId: string, message: string, params: {
    [name: string]: string | number | boolean | object;
}) => void;
export { log, debug };
