/**
 * Bootstrap playbook from codebase
 *
 * Uses SSE streaming for real-time progress feedback.
 * Integrates import graph analysis for smart file selection.
 */
import { ThoroughnessLevel } from '@ace-sdk/core';
interface BootstrapOptions {
    mode?: 'hybrid' | 'both' | 'local-files' | 'git-history' | 'docs-only';
    thoroughness?: ThoroughnessLevel;
    commitLimit?: number;
    daysBack?: number;
    maxFiles?: number;
    repoPath?: string;
    merge?: boolean;
    /** Use streaming SSE for progress (default: true) */
    stream?: boolean;
    /** Use smart file selection via import graph (default: true) */
    smartSelect?: boolean;
}
/**
 * Initialize playbook from codebase
 */
export declare function bootstrapCommand(options: BootstrapOptions): Promise<void>;
export {};
//# sourceMappingURL=bootstrap.d.ts.map