import "./UserList.scss"; import React from "react"; declare type UserListProps = { children: React.ReactNode; className?: string; mobile?: boolean; }; export declare const UserList: ({ children, className, mobile }: UserListProps) => JSX.Element; export {};