import { IFormGroupProps } from '@blueprintjs/core'; import { InputComponentProps } from '@balgamat/react-autoform'; import { IDateInputProps } from '@blueprintjs/datetime'; import { FC } from 'react'; export declare type DateProps = InputComponentProps & Partial & Partial & { locale?: string; }; export declare const DateInput: FC;