import * as React from 'react'; import { PreciseTheme } from '../common'; export interface StyledInputProps extends React.InputHTMLAttributes { block?: boolean; disabled?: boolean; labelShown: boolean; theme?: PreciseTheme; innerRef?(ref: HTMLElement): void; } export declare const StyledInput: any;