import React from 'react';
import { IInputDate } from './types/inputDate';
declare const InputDateBoundary: <V extends string | unknown>(props: IInputDate<V>, ref: React.ForwardedRef<HTMLInputElement | undefined>) => JSX.Element;
declare const InputDate: <V extends string | unknown>(props: React.PropsWithChildren<IInputDate<V>> & {
    ref?: React.ForwardedRef<HTMLInputElement | undefined>;
}) => ReturnType<typeof InputDateBoundary>;
export { InputDate };
