import * as React from 'react'; export interface TextFieldLabelProps { active: boolean; filled: boolean; error: boolean; multiline: boolean; } export interface StyledInputRowProps extends React.HTMLAttributes { focused?: boolean; error?: boolean; placeholder?: string; label?: React.ReactChild; hasValue?: boolean; multiline?: boolean; } export declare const StyledInputRow: React.SFC & { inner: { readonly TextFieldBoxWithLabelWrapper: any; readonly TextFieldLabel: any; readonly TextFieldLabelText: any; }; };