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