/** * manifest profile command * * Profile command execution to identify performance bottlenecks. * Displays timing data for each execution phase and can export flame graph data. */ interface ProfileOptions { /** IR file to load */ ir?: string; /** Output format for results */ format?: 'table' | 'json' | 'flame'; /** Number of times to run each command (for averaging) */ iterations?: number; /** Specific command to profile */ command?: string; /** Preview --export write without touching the filesystem. */ dryRun?: boolean; /** Entity name for the command */ entity?: string; /** Input JSON for the command */ input?: string; /** Export profiling data to file */ export?: string; /** Include detailed per-operation timing */ detailed?: boolean; } /** * Profile command handler */ export declare function profileCommand(options?: ProfileOptions): Promise; export {}; //# sourceMappingURL=profile.d.ts.map