import type { Attachment } from '../types/index.ts'; export declare function useChat(): { send: (text: string, attachments?: Attachment[]) => Promise; retry: (messageId: string) => Promise; isStreaming: boolean; };