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: default ElevenLabs voice (**required** field option). Loads voices from the plugin admin API. */ declare const NarrationCtbDefaultVoice: (props: Props) => import("react/jsx-runtime").JSX.Element; export { NarrationCtbDefaultVoice };