export declare const log: { info: (msg: string) => void; success: (msg: string) => void; warn: (msg: string) => void; error: (msg: string) => void; step: (n: number, total: number, msg: string) => void; header: (msg: string) => void; dim: (msg: string) => void; }; export declare function setVerbose(v: boolean): void; export declare function isVerbose(): boolean;