export declare const log: { info: (message: string, ...args: unknown[]) => void; success: (message: string, ...args: unknown[]) => void; warn: (message: string, ...args: unknown[]) => void; error: (message: string, ...args: unknown[]) => void; debug: (message: string, ...args: unknown[]) => void; box: (message: string) => void; start: (message: string) => void; ready: (message: string) => void; progress: (message: string) => void; progressEnd: () => void; }; export type Logger = typeof log;