type IntlShape = { id: string; defaultMessage: string; }; type Props = { name: string; value: unknown; onChange: (e: { target: { name: string; value: unknown; }; }) => void; intlLabel: IntlShape; description?: IntlShape; disabled?: boolean; error?: string; }; /** * CTB option: repeatable open/close delimiters — regions between tags (inclusive) are dropped from narration text before TTS. */ declare const NarrationCtbDelimiterPairs: (props: Props) => import("react/jsx-runtime").JSX.Element; export { NarrationCtbDelimiterPairs };