import { Nip29GroupChat } from '../../../types';
export declare const sendGroupChat: ({ relay, groupId, chat, onSuccess, onError, }: {
    relay: string;
    groupId: string;
    chat: Pick<Nip29GroupChat, "content" | "parentId">;
    onSuccess?: () => void;
    onError?: () => void;
}) => void;
