import { AxiosInstance } from 'axios';
export interface TimezoneResource {
get(country?: string): Promise<any>;
}
export default class Timezone implements TimezoneResource {
protected client: AxiosInstance;
constructor(client: AxiosInstance);
get(country?: string): Promise<any>;
}