import { FormFieldComponentProps } from '../../../lib/types/types'; type Props = Omit & { locale: string; /** * @deprecated deprecated in favor of using errorId instead */ isErrored?: boolean; }; export declare const BirthDateComponent: ({ onChange, isRequired, errorId, isErrored, value, locale, disabled, }: Props) => import("react/jsx-runtime").JSX.Element; export {};