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