import { AddressNLComponentSchema } from '@open-formulieren/types'; import { EditFormDefinition } from '../types'; /** * Helper type to extract information from existing types. */ type AddressSubComponents = Required['openForms']>['components']>; export interface SubcomponentValidationProps { prefix: string; component: keyof AddressSubComponents; label: React.ReactNode; tooltip: string; placeholder: string; } export declare const SubcomponentValidation: React.FC; /** * Form to configure a Formio 'address' type component. */ declare const EditForm: EditFormDefinition; export default EditForm;