import { LabeledInputProps } from './LabeledInput'; import { TextInputProps } from 'ra-ui-materialui'; type ILocalizedTextInputProps = TextInputProps & LabeledInputProps & { /** * Indicates if at least one locale is required. */ requiredAtLeastOneLocale?: boolean; /** * Indicates the locale that is required. * If not provided, one of the locales will be required. */ requiredLocale?: string; }; declare function LocalizedTextInput({ requiredAtLeastOneLocale, requiredLocale, validate: _validate, required: _required, ...props }: ILocalizedTextInputProps): import("react/jsx-runtime").JSX.Element; export type { ILocalizedTextInputProps }; export { LocalizedTextInput }; //# sourceMappingURL=LocalizedTextInput.d.ts.map