import React from 'react';
import { UserMeta } from 'softchatjs-core';

type UserListProps = {
    data: Array<UserMeta>;
    goToChat: () => void;
    title?: string;
};
declare function UserList(props: UserListProps): React.JSX.Element;

export { UserList as default };
