export interface LoggerArgs { fileName?: string; functionCall?: string; type?: 'ERROR' | 'LOG'; description?: string; } export declare const logger: (message: string | unknown, { fileName, functionCall, description, type }?: LoggerArgs) => void;