export interface ElementRef { xpath: string; type: string; label?: string; value?: string; } export interface SessionData { sessionId: string; appiumUrl: string; deviceName: string; bundleId: string; refs: Record; } export declare function readSession(): SessionData | null; export declare function writeSession(session: SessionData): void; export declare function updateRefs(refs: Record): void; export declare function deleteSession(): void; export declare function getRef(ref: string): ElementRef | undefined; //# sourceMappingURL=session.d.ts.map