import { ChildrenComponentSchema } from '@open-formulieren/types'; import { IntlShape } from 'react-intl'; import { z } from 'zod'; import { GetValidationSchema } from '../types'; declare const buildChildSchema: (intl: IntlShape) => z.ZodSchema; declare const getValidationSchema: GetValidationSchema; export default getValidationSchema; export { buildChildSchema };