/** * List command options */ export interface ListOptions { /** Path to infrastructure directory */ path: string; /** Output format */ format: "text" | "json"; } /** * A single entity in the list output */ export interface ListEntity { name: string; lexicon: string; entityType: string; kind: string; } /** * List command result */ export interface ListResult { /** Whether the list succeeded */ success: boolean; /** Discovered entities */ entities: ListEntity[]; /** Formatted output */ output: string; } /** * Execute the list command */ export declare function listCommand(options: ListOptions): Promise; /** * Print list result to console */ export declare function printListResult(result: ListResult): void; //# sourceMappingURL=list.d.ts.map