import { BotInstance } from '../../BotInstance'; import { KHInviteCreateResponse, KHInviteListResponse } from './invite.types'; export declare class InviteAPI { private self; constructor(self: BotInstance); private argChecker; /** * 获取邀请列表 * @param guildId 服务器id */ list(guildId?: string, channelId?: string): Promise; create(guildId?: string, channelId?: string): Promise; delete(urlCode: string, guildId?: string, channelId?: string): Promise; }