/** * QA360 Examples Command - Manage example templates * * Usage: * qa360 examples list * qa360 examples copy api-basic * qa360 examples show fullstack */ /** * CLI options for examples command */ export interface ExamplesOptions { output?: string; force?: boolean; } /** * List available examples */ export declare function examplesListCommand(): Promise; /** * Show example content */ export declare function examplesShowCommand(templateName: string): Promise; /** * Copy example to current directory */ export declare function examplesCopyCommand(templateName: string, options?: ExamplesOptions): Promise; declare const _default: { list: typeof examplesListCommand; show: typeof examplesShowCommand; copy: typeof examplesCopyCommand; }; export default _default;