UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

13 lines (11 loc) 453 B
import { default as React } from 'react'; import { FormFieldComponentProps } from '../../../lib/types/types'; type Props = Omit<FormFieldComponentProps, "isErrored"> & { locale: string; /** * @deprecated deprecated in favor of using errorId instead */ isErrored?: boolean; }; export declare const BirthDateComponent: ({ onChange, isRequired, errorId, isErrored, value, locale, disabled, }: Props) => React.JSX.Element; export {};