import { JSX } from 'react'; import { InputDateProps } from './InputDateComponent'; export interface HookedInputDateProps extends Omit { /** * field name to match hook-form state */ name: string; } /** * `InputDate` component ready to be used with the `react-hook-form` context. * Value is stored in form state as iso date string (example: `"2023-08-01T22:00:00.000Z"` ). * @see InputDate */ export declare function HookedInputDate({ name, ...props }: HookedInputDateProps): JSX.Element; export declare namespace HookedInputDate { var displayName: string; }