export interface PikcupPointType { id: string; name: string; address: { postalCode: string; city: string; state: string; neighborhood: string; street: string; number: string; }; isActive: boolean; businessHours: { businessHoursWeek: BusinessHours; businessHoursWeekend: BusinessHours; }; } export interface BusinessHours { dayOfWeek?: number; openingTime: string; closingTime: string; }