import { JSX } from 'react'; import { InputDateRangeProps } from './InputDateRange'; export interface HookedInputDateRangeProps extends Omit { /** * field name to match hook-form state */ name: string; } /** * `InputDateRange` component ready to be used with the `react-hook-form` context. * Value is stored in form state as tuple of two iso date strings * (example: `["2023-08-01T22:00:00.000Z", "2023-08-14T22:00:00.000Z"]` ). * @see InputDateRange */ export declare function HookedInputDateRange({ name, ...props }: HookedInputDateRangeProps): JSX.Element; export declare namespace HookedInputDateRange { var displayName: string; }