import { BaseClient } from '../../client/index.js'; import { InviteCreateResponse, InviteListResponse } from './types.js'; export declare class InviteAPI { private self; constructor(self: BaseClient); 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; }