/** * Minimal structured logger for aiws CLI. * * Levels: debug | info | warn | error * Prefix: [aiws] level > message * Respects AIWS_DEBUG env for debug output. */ export declare const logger: { debug: (msg: string, ...args: unknown[]) => void; info: (msg: string, ...args: unknown[]) => void; warn: (msg: string, ...args: unknown[]) => void; error: (msg: string, ...args: unknown[]) => void; };