import { Nip29GroupThread } from '../../../types';
export declare const sendGroupThread: ({ relay, groupId, thread, onSuccess, onError, }: {
    relay: string;
    groupId: string;
    thread: Pick<Nip29GroupThread, "content" | "subject">;
    onSuccess?: () => void;
    onError?: () => void;
}) => void;
