import { BaseClient } from "../../client/base.js"; import { Guild } from "../guild/index.js"; import { GuildUser } from "../user/guild.js"; import { BaseChannel, BaseChannelInterface } from "./base.js"; export declare class GuildChannel extends BaseChannel { name?: string; guild: Guild; master?: GuildUser; parentId?: string; topic?: string; isCategory?: boolean; constructor(data: KGuildChannel, client: BaseClient); } interface KGuildChannelInterface extends BaseChannelInterface { guildId: string; masterId: string; parentId: string; topic: string; name: string; isCategory: boolean; } export declare type KGuildChannel = Partial & Pick & BaseChannelInterface; export {};