declare function debugLog(type: string, ...args: unknown[]): void;
declare function errorLog(error: string | ErrorEvent): void;
export declare const logger: {
    debug: typeof debugLog;
    error: typeof errorLog;
};
export {};
