import type { AxiosInstance } from 'axios'; export interface User { id: string; name: string; nickname?: string; } declare class Users { api: AxiosInstance; constructor(api: AxiosInstance); get(): Promise>; } export default Users;