import { Universal } from 'koishi'; import { GitHubBotWithMessaging } from './messaging'; export declare class GitHubBotWithAPI extends GitHubBotWithMessaging { getLogin(): Promise; getUser(userId: string): Promise; getGuild(guildId: string): Promise; getChannel(channelId: string, guildId?: string): Promise; getGuildList(): Promise>; getChannelList(guildId: string): Promise>; createChannel(guildId: string, data: Partial): Promise; updateChannel(channelId: string, data: Partial): Promise; deleteChannel(channelId: string): Promise; }