import { APICategory } from "../api"; import { Client } from "../Client"; import { BaseObject } from "./BaseObject"; import { Server } from "./Server"; export declare class Category extends BaseObject { server: Server; constructor(client: Client, data: APICategory, server: Server); get createdAt(): number; get name(): string; get channelIDs(): string[]; get channels(): import("./ServerChannel").ServerChannel[]; }