import React from "react"; import { MetaProps } from "../types"; type DateInputPropTypes = { readonly currency?: boolean; readonly customClass?: any; readonly input: any; readonly meta: MetaProps; readonly placeholder?: string; readonly tabIndex?: string; readonly value?: string; readonly formatValue: (raw: string) => string; readonly normalizeValue: (raw: string) => any; readonly onBlur?: () => void; readonly onChange?: (event: any) => void; readonly onRegisterRef?: (callback: (node: any) => void) => void; }; export declare const OldDateInput: (props: DateInputPropTypes) => React.JSX.Element; export {};