import { ElementType } from 'react'; import { RenderComponent, RenderComponentProps } from './Field'; import { InjectedFieldProps } from './InjectedFieldProps'; export declare type StandAloneInputProps = { /** Component to render inside of the field. */ Component: RenderComponent; /** Value of the field. */ value: TValue; /** Function to change the value of the field. */ onChange: (arg: TValue) => void; } & Omit, keyof InjectedFieldProps | 'value' | 'onChange' | 'normalize' | 'validate'>; /** The stand alone version of ``. Can use a type of input component outside of a `
`. */ export default function StandAloneInput(props: StandAloneInputProps): JSX.Element;