import * as React from 'react'; import { CSSObject } from '@emotion/react'; import type { Property } from 'csstype'; import { Theme } from '../../Identity/Theme'; import { TextProps } from '../../Typography'; export interface TextAreaProps extends TextProps { markInvalid?: boolean; placeholderTextTransform?: Property.TextTransform; } export declare const textAreaStyle: (theme: Theme, props: TextAreaProps) => CSSObject; export declare const TEXTAREA_CLASSNAME = "textarea"; export declare const TextArea: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; //# sourceMappingURL=TextArea.d.ts.map