import { IAPIBaseUrl, IApiEnv } from '../types/Params'; export declare function resetApiEndpoint(): void; export declare function _resolveApiEndpoint(apiBaseUrl?: IAPIBaseUrl, apiEnv?: IApiEnv): Promise; export declare function sendBeakon(method: string, params?: { [key: string]: any; }, noSession?: boolean): Promise; export declare function request(method: string, params?: { [key: string]: any; }, noSession?: boolean, customEndpoint?: string): Promise; export declare function sendFormData(url: string, data: FormData): Promise;