jslib-nightly
Version:
SheerID JavaScript Library
13 lines (12 loc) • 675 B
TypeScript
import React from 'react';
import { InjectedIntlProps } from 'react-intl';
import { FormFieldComponentProps } from '../../../lib/types/types';
export declare const DischargeDate: {
({ onChange, intl, isErrored, value, }: FormFieldComponentProps & InjectedIntlProps): JSX.Element;
defaultProps: {
value: string;
};
};
export declare const DischargeDateComponent: React.ComponentClass<Pick<FormFieldComponentProps<any>, "errorId" | "isErrored" | "onChange" | "onKeyDown" | "autoFocus" | "placeholder" | "value" | "isRequired" | "verificationService">, any> & {
WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & InjectedIntlProps>;
};