/** * CLI Command: lex wave complete * * Emit wave completion frame with aggregated metrics from all wave issues/PRs. */ import { type WaveIssue } from "../../memory/frames/wave-complete.js"; import { type FrameStore } from "../../memory/store/index.js"; export interface WaveCompleteOptions { epic: string; wave: string; issues?: WaveIssue[]; epicLabels?: string[]; json?: boolean; } /** * Execute the 'lex wave complete' command * Emits a wave completion frame with aggregated metrics * * @param options - Command options * @param frameStore - Optional FrameStore for dependency injection */ export declare function waveComplete(options: WaveCompleteOptions, frameStore?: FrameStore): Promise;