/** * Payer and vendor are considered to be in the same region when both are * within North America (US/CA are interchangeable) or their regions match exactly. */ declare const checkIsSameRegion: (payerRegion?: string | null, vendorRegion?: string | null) => boolean; export default checkIsSameRegion;