UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

13 lines (11 loc) 446 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 DischargeDateComponent: ({ onChange, errorId, isErrored, value, disabled, locale, }: Props) => React.JSX.Element; export {};