/** * Logging function equivalent to console.log * @param source the context where the log originated from (usually the function name) * @param message the message of the log * @param apiKey the refreshToken * @param args additional data, will be stringified and appended */ export declare const infoLogger: (source: string, message: string, apiKey?: string, ...args: unknown[]) => void; /** * Logging function equivalent to console.error * @param source the context where the log originated from (usually the function name) * @param message the message of the log * @param apiKey the refreshToken * @param args additional data, will be stringified and appended */ export declare const errorLogger: (source: string, message: string, apiKey?: string, ...args: unknown[]) => void; /** * Logging function equivalent to console.warn * @param source the context where the log originated from (usually the function name) * @param message the message of the log * @param apiKey the refreshToken * @param args additional data, will be stringified and appended */ export declare const warnLogger: (source: string, message: string, apiKey?: string, ...args: unknown[]) => void;