import { GetUsersParams, RefreshServiceTokenResponse, RefreshServiceTokenRequest } from '../../../types/users'; import { PaginatedData } from '../../../types/paginatedData'; import { User } from '../../../../types/openapi'; export declare function getUsers(payload?: GetUsersParams): Promise>; /** * Ask for a refreshed Salesforce token. In case the token hasn't expired yet, this method will return the same token as the current one found in the (`getEnv`)[#getenv] result. * @returns Promise resolving to an object containing the token */ export declare function refreshServiceToken(payload?: RefreshServiceTokenRequest): Promise; export declare function refreshAccessToken(): any;