import { Channel } from "./Channel"; import { Snowflake } from "discord-api-types/globals"; import { APIGuildChannel } from "discord-api-types/v10"; import { ChannelType } from "discord-api-types/payloads/v10/channel"; import { Overwrite } from "./Overwrite"; export declare class GuildChannel extends Channel { guildId: Snowflake | null; permissionOverwrites: Overwrite[] | null; position: number; parentId: Snowflake | null; nsfw: boolean | null; constructor(raw: APIGuildChannel); } //# sourceMappingURL=GuildChannel.d.ts.map