import { TextareaComponentSchema } from '@open-formulieren/types'; export interface ValueDisplayProps { componentDefinition: TextareaComponentSchema; value: string | string[] | undefined; } declare const ValueDisplay: React.FC; export default ValueDisplay;