import { BridgeOptions } from "../bridge/file-bridge.js"; export declare function getTextTools(bridgeOptions: BridgeOptions): { add_text_overlay: { description: string; parameters: { type: "object"; properties: { text: { type: string; description: string; }; start_seconds: { type: string; description: string; }; duration_seconds: { type: string; description: string; }; caption_format: { type: string; enum: string[]; description: string; }; }; required: string[]; }; handler: (args: { text: string; start_seconds?: number; duration_seconds?: number; caption_format?: string; }) => Promise<{ success: boolean; error: string; }>; }; import_mogrt: { description: string; parameters: { type: "object"; properties: { mogrt_path: { type: string; description: string; }; track_index: { type: string; description: string; }; start_seconds: { type: string; description: string; }; duration_seconds: { type: string; description: string; }; }; required: string[]; }; handler: (args: { mogrt_path: string; track_index?: number; start_seconds?: number; duration_seconds?: number; }) => Promise; }; import_mogrt_from_library: { description: string; parameters: { type: "object"; properties: { mogrt_name: { type: string; description: string; }; track_index: { type: string; description: string; }; start_seconds: { type: string; description: string; }; }; required: string[]; }; handler: (args: { mogrt_name: string; track_index?: number; start_seconds?: number; }) => Promise; }; }; //# sourceMappingURL=text.d.ts.map