import React from "react"; import { MetaProps } from "src/types"; export type SimpleInputPropTypes = { readonly autoComplete?: string; readonly autoFocus?: boolean; readonly customClass?: any; readonly disabled?: boolean; readonly input: any; readonly label?: string; readonly meta: MetaProps; readonly placeholder?: string; readonly tabIndex?: string; readonly theType?: "input" | "password"; readonly inputRef?: (callback: (node: any) => void) => void; }; export declare const OldSimpleInput: (props: SimpleInputPropTypes) => React.JSX.Element;