/** * Hook for sharing conversation threads by threadId. * The consumer's backend looks up messages by threadId. * * @category Hooks */ export declare const useShareThread: ({ generateShareLink, }: { generateShareLink: (threadId: string) => Promise; }) => { shouldDisableShareButton: boolean; hasMessages: boolean; getShareThreadLink: () => Promise; }; //# sourceMappingURL=useShareThread.d.ts.map