import * as React from 'react'; import { StyledComponentClass } from 'styled-components'; import { TypographyProps } from '../Typography'; import { Theme } from '../types'; export interface TextInputLabelProps { required?: boolean; children?: React.ReactNode; disabled?: boolean; shrink?: boolean; focused?: boolean; error?: boolean; } interface TextInputLabelComp extends StyledComponentClass & React.HTMLAttributes & TypographyProps, Theme, React.ClassAttributes & React.HTMLAttributes & TextInputLabelProps> { } declare const TextInputLabel: TextInputLabelComp; export default TextInputLabel;