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