@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
8 lines (7 loc) • 363 B
TypeScript
/// <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>>;