import type { AxiosInstance } from 'axios'; export interface Location { name: string; region: string; } declare class Locations { api: AxiosInstance; constructor(api: AxiosInstance); getAll(): Promise>; } export default Locations;