export declare const log: { info: (msg: string) => void; success: (msg: string) => void; warn: (msg: string) => void; error: (msg: string) => void; task: (msg: string) => void; plain: (msg: string) => void; gray: (msg: string) => void; section: (msg: string) => void; /** Routes based on message prefix (matches what taskLoop emits). */ auto: (msg: string) => void; };