import { z } from 'zod'; import type { CustomFieldDefinitionIndex } from '@/models/custom-field-definition/customFieldDefinitionIndex.model.ts'; export declare const businessIndividualCreateFormSchema: z.ZodObject<{ email: z.ZodNullable; firstName: z.ZodString; lastName: z.ZodString; mobilePhone: z.ZodNullable; phone: z.ZodNullable; }, z.core.$strip>; export declare const businessCreateFormSchema: z.ZodObject<{ childUuid: z.ZodNullable>; individualUuid: z.ZodNullable>; parentUuid: z.ZodNullable>; name: z.ZodString; address: z.ZodObject<{ placeId: z.ZodOptional>; bus: z.ZodString; city: z.ZodString; coordinates: z.ZodObject<{ lat: z.ZodNullable; lng: z.ZodNullable; }, z.core.$strip>; country: z.ZodString; postalCode: z.ZodString; street: z.ZodString; streetNumber: z.ZodString; }, z.core.$strip>; companyNumber: z.ZodNullable; customFields: z.ZodNullable>; }, z.core.$strip>>; individual: z.ZodNullable; firstName: z.ZodString; lastName: z.ZodString; mobilePhone: z.ZodNullable; phone: z.ZodNullable; }, z.core.$strip>>; individualPosition: z.ZodNullable; vatNumber: z.ZodNullable; number: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; export type BusinessCreateForm = z.infer; export declare function getBusinessCreateFormSchema(customFieldDefinitions: CustomFieldDefinitionIndex[]): z.ZodObject<{ childUuid: z.ZodNullable>; individualUuid: z.ZodNullable>; parentUuid: z.ZodNullable>; name: z.ZodString; address: z.ZodObject<{ placeId: z.ZodOptional>; bus: z.ZodString; city: z.ZodString; coordinates: z.ZodObject<{ lat: z.ZodNullable; lng: z.ZodNullable; }, z.core.$strip>; country: z.ZodString; postalCode: z.ZodString; street: z.ZodString; streetNumber: z.ZodString; }, z.core.$strip>; companyNumber: z.ZodNullable; customFields: z.ZodNullable>; }, z.core.$strip>>; individual: z.ZodNullable; firstName: z.ZodString; lastName: z.ZodString; mobilePhone: z.ZodNullable; phone: z.ZodNullable; }, z.core.$strip>>; individualPosition: z.ZodNullable; vatNumber: z.ZodNullable; number: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>;