import * as React from 'react'; import { IFocusable } from '../focusable'; export interface IInputProps extends React.DetailedHTMLProps, HTMLInputElement> { onRef?: (ref: React.Component & IFocusable | null) => void; label?: string; errorLabel?: string; status?: 'updating' | 'updated'; } export declare const Input: React.ComponentType;