import { Tag, TrendTag } from "../types/Common"; import { Pixiv } from "./Pixiv"; export declare class Tags { private readonly pixiv; constructor(pixiv: Pixiv); tagAutocomplete(word: string): Promise; getTrendingTags(type: "illust" | "novel"): Promise; }