import { InfoHelper } from "../index"; type RoamingPolicy = "default" | "id" | "card" | "cab" | "gitlab"; export declare const getCsrfToken: () => Promise; export declare const login: (helper: InfoHelper, userId: string, password: string) => Promise; export declare const logout: (helper: InfoHelper) => Promise; export declare const roam: (helper: InfoHelper, policy: RoamingPolicy, payload: string) => Promise; export declare const verifyAndReLogin: (helper: InfoHelper) => Promise; export declare const roamingWrapper: (helper: InfoHelper, policy: RoamingPolicy | undefined, payload: string, operation: (param?: string) => Promise) => Promise; export declare const roamingWrapperWithMocks: (helper: InfoHelper, policy: RoamingPolicy | undefined, payload: string, operation: (param?: string) => Promise, fallback: R) => Promise; export {};