import { PartnersComponentSchema } from '@open-formulieren/types'; import { GetValidationSchema } from '../types'; /** * Partners component validation schema for validating partner component values. * * The partner component has some edge-cases that should be impossible, and therefore are * not covered in this validation schema. This includes: * - adding multiple partners manually * - combining manually added and server fetched partners * - having partners with the same bsn number */ declare const getValidationSchema: GetValidationSchema; export default getValidationSchema;