export declare const logger: {
    info: (msg: string) => void;
    success: (msg: string) => void;
    warn: (msg: string) => void;
    error: (msg: string) => void;
    skip: (msg: string) => void;
    debug: (msg: string) => false | void | "" | undefined;
};
