import type { Category as APICategory } from 'revolt-api'; import { Base, Server, ServerChannel } from './index'; import { Collection } from '../util'; export declare class Category extends Base { server: Server; name: string; protected _children: string[]; constructor(server: Server, data: APICategory); protected _patch(data: APICategory): this; get children(): Collection; toString(): string; }