UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
8 lines (7 loc) 363 B
/// <reference types="react" /> import type { TextareaAutosizeProps } from '@mui/material'; export type TextAreaProps = TextareaAutosizeProps & { errorMessage?: string; isModifiedLayout?: boolean; }; export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;