import { Command } from 'commander'; import type { BotOption } from './shared.js'; interface ThreadOutput { id: string; name: string; type: number; parent_id?: string; } interface CreateActionResult { success?: boolean; error?: string; thread?: ThreadOutput; } interface ArchiveActionResult { success?: boolean; error?: string; threadId?: string; } export declare function createAction(channel: string, name: string, options: BotOption & { autoArchiveDuration?: string; }): Promise; export declare function archiveAction(threadId: string, options: BotOption): Promise; export declare const threadCommand: Command; export {}; //# sourceMappingURL=thread.d.ts.map