import { BotInstance } from '../../BotInstance'; import { Channel } from '../../types'; import { ChannelListResponseInternal } from './channel.types'; export declare class ChannelAPI { private self; constructor(self: BotInstance); /** * 获取频道列表 * @param guildId 服务器id */ list(guildId: string): Promise; view(channelId: string): Promise; create(guildId: string, name: string, type?: string, parentId?: string, limitAmount?: number, voiceQuality?: number): Promise; delete(channelId: string): Promise; moveUser(channelId: string, userIds: string[]): Promise; }