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