export declare function isDebugMode(executeFunctions: any): boolean;
export declare function debug(message: string, data?: any, executeFunctions?: any): void;
export declare function info(message: string, data?: any): void;
export declare function warn(message: string, data?: any): void;
export declare function error(message: string, error?: Error | unknown): void;
export declare const logger: {
    debug: typeof debug;
    info: typeof info;
    warn: typeof warn;
    error: typeof error;
};
export declare const logDebug: typeof debug;
export declare const logWarning: typeof warn;
