/**
 * CLI Commands for Framework Strategy System
 */
export interface FrameworkCommandOptions {
    url?: string;
    key?: string;
    verbose?: boolean;
    framework?: string;
}
export declare class FrameworkCommands {
    /**
     * Detect framework and show strategy information
     */
    static detectFramework(options: FrameworkCommandOptions): Promise<void>;
    /**
     * Test a specific strategy
     */
    static testStrategy(strategyName: string, options: FrameworkCommandOptions): Promise<void>;
    /**
     * List all available strategies
     */
    static listStrategies(options: FrameworkCommandOptions): Promise<void>;
}
//# sourceMappingURL=framework-commands.d.ts.map