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