import { z } from "zod"; export declare const FdoEInvoiceCustomerBaseProfile: z.ZodObject<{ _id: z.ZodEffects; type: z.ZodEnum<["individual", "company"]>; nickname: z.ZodNullable>; name: z.ZodString; phoneNumber: z.ZodString; address: z.ZodObject<{ line1: z.ZodString; line2: z.ZodNullable>; state: z.ZodString; city: z.ZodString; postcode: z.ZodString; country: z.ZodString; coordinates: z.ZodNullable>>; }, "strip", z.ZodTypeAny, { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }, { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }>; userId: z.ZodString; }, "strip", z.ZodTypeAny, { nickname?: string | null | undefined; type: "individual" | "company"; name: string; _id: string; phoneNumber: string; address: { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }; userId: string; }, { nickname?: string | null | undefined; type: "individual" | "company"; name: string; _id: string; phoneNumber: string; address: { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }; userId: string; }>; export declare const FdoEInvoiceMerchantBaseProfile: z.ZodObject<{ _id: z.ZodEffects; type: z.ZodEnum<["restaurant", "marketing"]>; businessId: z.ZodString; regNo: z.ZodString; tinNo: z.ZodString; name: z.ZodString; address: z.ZodObject<{ line1: z.ZodString; line2: z.ZodNullable>; state: z.ZodString; city: z.ZodString; postcode: z.ZodString; country: z.ZodString; coordinates: z.ZodNullable>>; }, "strip", z.ZodTypeAny, { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }, { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }>; phoneNo: z.ZodNullable>; }, "strip", z.ZodTypeAny, { phoneNo?: string | null | undefined; type: "restaurant" | "marketing"; name: string; _id: string; address: { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }; businessId: string; regNo: string; tinNo: string; }, { phoneNo?: string | null | undefined; type: "restaurant" | "marketing"; name: string; _id: string; address: { coordinates?: number[] | null | undefined; line2?: string | null | undefined; state: string; country: string; line1: string; city: string; postcode: string; }; businessId: string; regNo: string; tinNo: string; }>; export type FdoEInvoiceCustomerBaseProfile = z.infer; export type FdoEInvoiceMerchantBaseProfile = z.infer;