import EncompassService from './service';
import { ListOfUsersOptions } from '../types';
declare class UserService extends EncompassService {
    /**
     * Gets a list of user profiles from the organization. Takes an optional
     * argument to apply a filter.
     */
    getList(options?: ListOfUsersOptions): Promise<any[]>;
    /**
     * Returns a user profile. If no user profile is provided, will return
     * the profile matching the currently stored token.
     */
    getProfile(losId?: string): Promise<any>;
}
export default UserService;
