export declare function createLogger(name: string): {
    setVerbose: (value: boolean) => void;
    debug: (...args: any[]) => void;
};
