UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

13 lines (12 loc) 688 B
import React from 'react'; import { InjectedIntlProps } from 'react-intl'; import { FormFieldComponentProps } from '../../../lib/types/types'; export declare const BirthDate: { ({ onChange, intl, isErrored, isRequired, errorId, value, }: FormFieldComponentProps & InjectedIntlProps): JSX.Element; defaultProps: { value: string; }; }; export declare const BirthDateComponent: React.ComponentClass<Pick<FormFieldComponentProps<any>, "errorId" | "isErrored" | "onChange" | "onKeyDown" | "autoFocus" | "placeholder" | "value" | "isRequired" | "verificationService">, any> & { WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & InjectedIntlProps>; };