import { type Draft } from "../draft.js"; import { type Flags } from "../utils/cli.js"; export declare function cmdSetText(draft: Draft, filePath: string, segId: string, newText: string, flags: Flags, save?: boolean): void; export declare function cmdShift(draft: Draft, filePath: string, segId: string, offsetStr: string, flags: Flags, save?: boolean): void; export declare function cmdShiftAll(draft: Draft, filePath: string, offsetStr: string, flags: Flags, save?: boolean): void; export declare function cmdSpeed(draft: Draft, filePath: string, segId: string, multiplier: string, flags: Flags, save?: boolean): void; export declare function cmdVolume(draft: Draft, filePath: string, segId: string, levelStr: string, flags: Flags, save?: boolean): void; export declare function cmdTrim(draft: Draft, filePath: string, segId: string, startStr: string, durationStr: string, flags: Flags, save?: boolean): void; export declare function cmdOpacity(draft: Draft, filePath: string, segId: string, alphaStr: string, flags: Flags, save?: boolean): void;