/**
 * Models CLI Commands for NeuroLink
 * Implements comprehensive model management commands
 * Part of Phase 4.1 - Models Command System
 */
import type { CommandModule } from "yargs";
/**
 * Models CLI command factory
 */
export declare class ModelsCommandFactory {
    /**
     * Create the main models command with subcommands
     */
    static createModelsCommands(): CommandModule;
    /**
     * Build options for list command
     */
    private static buildListOptions;
    /**
     * Build options for search command
     */
    private static buildSearchOptions;
    /**
     * Build options for best command
     */
    private static buildBestOptions;
    /**
     * Build options for resolve command
     */
    private static buildResolveOptions;
    /**
     * Build options for compare command
     */
    private static buildCompareOptions;
    /**
     * Build options for stats command
     */
    private static buildStatsOptions;
    /**
     * Execute list command
     */
    private static executeList;
    /**
     * Execute search command
     */
    private static executeSearch;
    /**
     * Execute best command
     */
    private static executeBest;
    /**
     * Execute resolve command
     */
    private static executeResolve;
    /**
     * Execute compare command
     */
    private static executeCompare;
    /**
     * Execute stats command
     */
    private static executeStats;
}
