export interface CustomerAddress {
  id: string;
  label?: string;
  zipCode: string;
  street: string;
  number: string;
  complement?: string;
  district: string;
  city: string;
  state: string;
}

export interface Customer {
  id: string;
  storeId: string;
  name: string;
  email: string;
  phone: string;
  document: string;       // CPF/CNPJ
  totalOrders: number;
  lastOrderDate?: string;
  addresses: CustomerAddress[];
  createdAt: string;
}
