import { AxiosInstance } from 'axios'; import User from './User'; export default class LarkClient { static login(user: any): Promise; config: any; user: User; client: AxiosInstance; constructor(config: any, user: User); repoPath(path: string): string; createDoc(doc: any): Promise; updateDoc(id: number, doc: any): Promise; getDoc(id: number | string): Promise; getDocs(): Promise; updateRepo(repo: any): void; getRepo(): Promise; getRepoToc(): Promise; getRepos(): Promise; getUser(): Promise; }