import { AxiosInstance } from "axios"; import { NovelTags } from "../interface/bookmark"; import { CommissionRequestSent, ProfileAll, Profiles, UserWorksWithTag } from "../interface/user"; import { WorksWithTagParam } from "../interface/param"; import { IllustInfo } from "../interface/illust"; import { NovelInfo } from "../interface/novel"; export declare class UserWorksApi { private instance; constructor(instance: AxiosInstance); all(uid: number): Promise; commissionRequestSent(uid: number): Promise; illustTags(uid: number): Promise; illusts(uid: number, ids: number[]): Promise; illustsWithTag(uid: number, params: WorksWithTagParam): Promise>; mangaTags(uid: number): Promise; mangasWithTag(uid: number, params: WorksWithTagParam): Promise>; novelTags(uid: number): Promise; novels(uid: number, ids: number[]): Promise; novelsWithTag(uid: number, params: WorksWithTagParam): Promise>; }