import { AddressNLComponentSchema } from '@open-formulieren/types'; import { AddressData } from '@open-formulieren/types/dist/components/addressNL'; export interface ValueDisplayProps { componentDefinition: AddressNLComponentSchema; value: AddressData | undefined; } /** * Format a Dutch address. * * Formatting guidelines: https://www.adresseninfo.nl/hoe-schrijf-je-adres/ */ declare const ValueDisplay: React.FC; export default ValueDisplay;