/** * Dropshop types – drop-off locations near a postcode. */ /** Single dropshop from GET /parcel2go-shipping/v1/dropshops/near-postcode (shops keyed by provider). */ export interface Dropshop { id?: string; name?: string; address?: string; address1?: string; address2?: string; city?: string; postcode?: string; country?: string; countryCode?: string; distance?: number; latitude?: number; longitude?: number; [key: string]: unknown; } /** GET /parcel2go-shipping/v1/dropshops/near-postcode – shops grouped by provider/courier. */ export interface DropshopsNearPostcodeResponse { shops: Record; }