declare function write(...value: any): void;
export declare function getLog(silent?: boolean): {
    info: typeof write;
    warn: typeof write;
    error: typeof write;
};
export declare const log: {
    info: typeof write;
    warn: typeof write;
    error: typeof write;
};
export {};
