import { IState } from './Istate'; import { MockState } from './mock.state'; import { Recording } from './recording'; export declare class GlobalState implements IState { readonly _mocks: { [identifier: string]: MockState; }; readonly _variables: { [key: string]: string; }; readonly _recordings: { [identifier: string]: Recording[]; }; record: boolean; constructor(); get mocks(): { [identifier: string]: MockState; }; get variables(): { [key: string]: string; }; get recordings(): { [identifier: string]: Recording[]; }; }