export declare const createGroupInvite: ({ relay, groupId, code, reason, onSuccess, onError, }: {
    relay: string;
    groupId: string;
    code: string;
    reason?: string;
    onSuccess?: () => void;
    onError?: () => void;
}) => void;
