import * as React from 'react'; import { GrowthBehavior, ErrorType, Themeable } from '@workday/canvas-kit-react-common'; export interface TextInputProps extends Themeable, GrowthBehavior, React.InputHTMLAttributes { error?: ErrorType; inputRef?: React.Ref; } declare class TextInput extends React.Component { static ErrorType: typeof ErrorType; render(): JSX.Element; } export default TextInput; //# sourceMappingURL=TextInput.d.ts.map