export declare function threadList(options: { state?: string; limit?: string; }): Promise; export declare function threadCreate(options: { collaborators?: string; message?: string; refs?: string; artifact?: string; title?: string; tourWelcome?: boolean; team?: string; }): Promise; export declare function threadShare(threadId: string, options: { expires?: string; for?: string; }): Promise; export declare function threadGet(threadId: string, options: { messages?: boolean; limit?: string; }): Promise; export declare function threadClose(threadId: string, options: { resolution?: string; }): Promise; export declare function threadAddCollaborator(threadId: string, agent: string): Promise; export declare function threadAddRefs(threadId: string, refs: string): Promise; export declare function threadRemoveRef(threadId: string, refId: string): Promise; export declare function threadDelete(threadId: string): Promise;