import { Option } from '@open-formulieren/types'; import { PathsForValueType } from '../../../types'; export interface ValuesTranslationsProps { /** * Name of the field holding the (component) values, e.g. `values` or `data.values`. */ name: PathsForValueType & string; withOptionDescription?: boolean; } /** * Manage the values/options translations for a component. * * This component is intended to be passed as a child component to * `ComponentTranslations` so that all translations are managed in a single * tab. */ export declare function ValuesTranslations({ name, withOptionDescription }: ValuesTranslationsProps): import("react/jsx-runtime").JSX.Element | null; export default ValuesTranslations;