import { SessionStatus } from "../interfaces";
declare const addSessionProperty: (key: string, value: string, permanent: boolean) => Promise<boolean>;
declare const removeSessionProperty: (key: string) => any;
declare const endSession: () => any;
declare const getCurrentSessionId: () => Promise<string>;
declare const getLastRunEndState: () => Promise<SessionStatus>;
declare const getDeviceId: () => Promise<string>;
export { addSessionProperty, removeSessionProperty, endSession, getCurrentSessionId, getLastRunEndState, getDeviceId, };
