import * as React from "react"; import { InputDecorator } from "./decorator"; export type DateInputProps = Omit, "type" | "value" | "onChange"> & { value?: string | null; onChange?: React.ChangeEventHandler; onValueChange?: (value: string) => void; showIcon?: boolean; icon?: React.ReactNode; }; declare const DateInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { DateInput };