"""Export service — caption and text document generation.""" from __future__ import annotations class ExportService: """Handles export to SRT, WebVTT, ASS, plain text, and Markdown.""" # TODO: Implement pysubs2 integration # - SRT with [Speaker]: prefix # - WebVTT with voice tags # - ASS with named styles per speaker # - Plain text and Markdown with speaker labels pass