import * as React from 'react'; import { StandardProps } from '..'; import { FormLabelProps, FormLabelClassKey } from '../Form/FormLabel'; import { ClassNameMap } from '../styles/withStyles'; export interface InputLabelProps extends StandardProps { disableAnimation?: boolean; disabled?: boolean; error?: boolean; FormControlClasses?: Partial>; focused?: boolean; required?: boolean; shrink?: boolean; } export type InputLabelClassKey = | FormLabelClassKey | 'formControl' | 'labelDense' | 'shrink' | 'animated'; declare const InputLabel: React.ComponentType; export default InputLabel;