import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; type ImportOptions = { readonly dryRun: boolean; readonly report?: string; }; declare const importTranscripts: (paths: readonly string[], options: ImportOptions) => Promise>; export { importTranscripts };