export declare const setOptions: (opts: {
    debug: boolean;
}) => void;
declare function printError(title: any, ...args: any[]): void;
declare function printInfo(title: any, ...args: any[]): void;
declare function printWarning(title: any, ...args: any[]): void;
declare function printSuccess(title: any, ...args: any[]): void;
declare const print: {
    error: typeof printError;
    info: typeof printInfo;
    warn: typeof printWarning;
    warning: typeof printWarning;
    success: typeof printSuccess;
    setOptions: (opts: {
        debug: boolean;
    }) => void;
};
export default print;
