import type { Draft } from "../draft.js"; import { type Flags } from "../utils/cli.js"; export interface CutOptions { start: number; end: number; } export declare function cutProject(draft: Draft, opts: CutOptions): { kept: number; removed: number; }; export declare function cmdCut(draft: Draft, _filePath: string, positional: string[], flags: Flags): void;