/** * breakpoint:* commands — Manage breakpoint auto-approval rules. * * Commands: * breakpoint:approve-rule [--action auto-approve|never-auto-approve] [--source ] [--note ] [--json] * breakpoint:remove-rule [--json] * breakpoint:list-rules [--json] * breakpoint:should-auto-approve [--tags ] [--expert ] [--json] * breakpoint:history [--breakpoint-id ] [--runs-dir ] [--limit ] [--json] */ export interface BreakpointCommandArgs { subcommand: string; pattern?: string; ruleId?: string; breakpointId?: string; action?: string; source?: string; note?: string; tags?: string; expert?: string; runsDir?: string; limit?: number; json: boolean; } export declare function handleBreakpointCommand(args: BreakpointCommandArgs): Promise; //# sourceMappingURL=breakpointRules.d.ts.map