type AttributeMap = Record; export declare const configureLogger: ({ disableTelemetry: disableTelemetryArg, }: { disableTelemetry: boolean; }) => void; export declare const logger: { log: { error: (message: string, error?: Error, attributes?: AttributeMap) => Promise; info: (message: string, attributes?: AttributeMap) => Promise; warn: (message: string, attributes?: AttributeMap) => Promise; }; }; export {};