export declare const logger: {
    info: (message: string) => void;
    success: (message: string) => void;
    warn: (message: string) => void;
    error: (message: string, error?: any) => void;
    debug: (message: string, ...args: any[]) => void;
    box: (message: string, options?: {
        title?: string;
        type?: "info" | "success" | "warning" | "error";
    }) => void;
};
