interface CustomerInfo { first_name: string; last_name: string; email: string; phone: string; address: string; city: string; country: string; delivery_address?: string; delivery_city?: string; delivery_country?: string; } export declare class Customer { private _customer; constructor(customer: CustomerInfo); toJSON(): object; } export {};