import { z } from 'zod';

declare const merchantCustomerSchema: z.ZodObject<{
    id: z.ZodString;
    userId: z.ZodString;
    merchantAccountId: z.ZodString;
    identifier: z.ZodString;
    createdAt: z.ZodNullable<z.ZodDate>;
    status: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
    id: string;
    status: number;
    createdAt: Date | null;
    userId: string;
    merchantAccountId: string;
    identifier: string;
}, {
    id: string;
    createdAt: Date | null;
    userId: string;
    merchantAccountId: string;
    identifier: string;
    status?: number | undefined;
}>;
type MerchantCustomer = z.infer<typeof merchantCustomerSchema>;

export { type MerchantCustomer, merchantCustomerSchema };
