declare type Country = 'FR' | 'BE' | 'EN' | 'BG' | 'DE' | 'DK' | 'ES' | 'HR' | 'IT' | 'NO' | 'PL' | 'PT' | 'SE' | 'SL' | 'SR' | 'TR' | 'US'; declare type Methods = 'GET' | 'POST' | 'DELETE' | 'PUT' | 'PATCH'; declare type Versions = 'v1' | 'v2'; interface ClientOptions { token: string; countryCode: Country; } interface RequestOptions { versions?: Versions; headers?: Record; method?: Methods; params?: Record; body?: Record; } export { ClientOptions, Country, Methods, RequestOptions, Versions };