/**
 * Learning command - submit execution traces to update playbook
 *
 * Supports SSE streaming for real-time progress feedback (v2.1.0+)
 * Supports git context for AI-Trail pattern correlation (v2.2.0+)
 *
 * @see https://github.com/ce-dot-net/ace-sdk/issues/16
 */
interface LearnOptions {
    transcript?: string;
    stdin?: boolean;
    task?: string;
    success?: boolean;
    failure?: boolean;
    output?: string;
    stream?: boolean;
    timeout?: number;
    verbosity?: 'compact' | 'detailed';
    gitContext?: boolean;
    gitCommit?: string;
    gitBranch?: string;
}
/**
 * Submit learning event to update playbook
 */
export declare function learnCommand(options: LearnOptions): Promise<void>;
export {};
//# sourceMappingURL=learn.d.ts.map