import { CarrierId } from '@myparcel-dev/constants'; export interface SystemCountryCode { label: string; region: string; } export type SystemCountryCodesPerCountry = Record[]; export type GetSystemCountryCodesParams = { carrier_id?: CarrierId; unfiltered?: boolean; };