import type { CommandModule } from 'yargs'; interface LiveArgs { synth?: boolean; outDir?: string; region?: string; stack?: string[]; output?: 'text' | 'json'; failOn?: 'never' | 'drift' | 'risk'; } export declare const liveCommand: CommandModule, LiveArgs>; export {};