/**
 * Model Catalog CLI Commands
 *
 * Provides CLI interface for catalog operations:
 * - list: List all models with filtering
 * - info: Show detailed model information
 * - search: Search models by query
 *
 * @implements @.aiwg/architecture/enhanced-model-selection-design.md#9-model-catalog-system
 * @module src/catalog/cli
 */
/**
 * Handle 'catalog list' command
 */
export declare function handleCatalogList(args: string[]): Promise<void>;
/**
 * Handle 'catalog info' command
 */
export declare function handleCatalogInfo(args: string[]): Promise<void>;
/**
 * Handle 'catalog search' command
 */
export declare function handleCatalogSearch(args: string[]): Promise<void>;
/**
 * Main catalog command router
 */
export declare function main(args: string[]): Promise<void>;
//# sourceMappingURL=cli.d.ts.map