import type { Command } from "./models.js"; export declare const KNOWN_METHODS: readonly ["ask", "blend", "describe", "fast", "help", "imagine", "info", "invite", "prefer", "private", "public", "relax", "settings", "show", "stealth", "subscribe"]; export type KnownMethods = typeof KNOWN_METHODS[number]; /** * get command from Midjourney discord bot and cache it in memory and disk. */ export declare class CommandCache { #private; private channel_id; private authorization; cacheDirectory: string; cache: Partial>; constructor(channel_id: string, authorization: string); getCommand(name: KnownMethods): Promise; getcacheFile(name: KnownMethods): string; } //# sourceMappingURL=CommandCache.d.ts.map