import { AxiosResponse } from 'axios'; declare class Apis { /** 登录 */ login(account: string, password: string): Promise>; treeList(token: string, projectId: string): Promise>; details(token: string, projectId: string): Promise>; schema(token: string, projectId: string): Promise>; } export declare const apis: Apis; export {};