import React from "react"; type TypeInputPropTypes = { readonly autoComplete?: string; readonly autoFocus?: boolean; readonly className?: string; readonly delay?: number; readonly id?: string; readonly inputRef?: React.RefObject; readonly name?: string; readonly placeholder?: string; readonly tabIndex?: number; readonly value: any; readonly change: (event: any) => void; }; export declare const DelayInputChange: (props: TypeInputPropTypes) => React.JSX.Element; export {};