export declare const logger: { info: (msg: string) => void; success: (msg: string) => void; warn: (msg: string) => void; error: (msg: string) => void; task: (msg: string) => void; debug: (msg: string) => void; tool: (msg: string) => void; prompt: (msg: string) => void; divider: () => void; section: (title: string) => void; sectionEnd: () => void; json: (label: string, obj: any) => void; };