declare const ConsoleOutput: {
    success: (...output: any[]) => void;
    error: (...output: any[]) => void;
    info: (...output: any[]) => void;
};
export default ConsoleOutput;
