import React from 'react'; export interface InputMethods extends React.InputHTMLAttributes { onWatchValue?: (value: string) => void; setInputRef?: (ref: React.RefObject) => void; } export interface InputProps extends InputMethods { keepFocus?: boolean; blurOnEscape?: boolean; error?: boolean; } declare const Input: React.ForwardRefExoticComponent>; export default Input; //# sourceMappingURL=Input.d.ts.map