import { HTTPUtils } from "./http"; import { SearchResults } from "../structures/searchResults"; export declare class Content { name: string; readonly hasTransformer: boolean; private http; private type; constructor(http: HTTPUtils, name: string, type: any); list(limit?: number, ids?: number[]): Promise>; get(id: number): Promise; }