import { GlideChoiceList } from "../types/GlideChoiceList"; export declare class ATFSnapshot { findSnapshot(testSysId?: string, currentStepOrder?: string): string; getComponentsFromSnapshotAsChoiceList( testId?: string, stepOrder?: string, methods?: string ): GlideChoiceList; static getMugshotVersion(): string; getMugshotsJSONbyHash( testSysId?: string, order?: number, componentHashes?: string[] ): string; getUIComponentsByType(snapshotId?: string, type?: string): Array; getUIComponentsFromMugshotCache( testSysId?: string, stepOrder?: string ): Array; saveSnapshot( pageURL?: string, stepSysId?: string, uiComponentsJSONString?: string, snapshotHash?: string, isPreviousStepSnapshot?: boolean ): string; constructor(); }