declare const emitters: { readonly afterAll: typeof afterAll; readonly afterEach: typeof afterEach; readonly beforeAll: typeof beforeAll; readonly beforeEach: typeof beforeEach; readonly declareDependencies: typeof declareDependencies; readonly declareVariables: typeof declareVariables; }; export default emitters; declare function afterAll(): { startingSyntax: { commands: { level: number; statement: string; }[]; }; endingSyntax: { commands: { level: number; statement: string; }[]; }; registrationLevel: number; }; declare function afterEach(): { startingSyntax: { commands: { level: number; statement: string; }[]; }; endingSyntax: { commands: { level: number; statement: string; }[]; }; }; declare function beforeAll(): { startingSyntax: { commands: { level: number; statement: string; }[]; }; endingSyntax: { commands: { level: number; statement: string; }[]; }; registrationLevel: number; }; declare function beforeEach(): { startingSyntax: ({ browserName, gridUrl }?: { browserName: string; gridUrl: string; }) => { commands: { level: number; statement: string; }[]; }; endingSyntax: { commands: { level: number; statement: string; }[]; }; }; declare function declareDependencies(): { startingSyntax: { commands: { level: number; statement: string; }[]; }; }; declare function declareVariables(): { startingSyntax: { commands: { level: number; statement: string; }[]; }; }; //# sourceMappingURL=hook.d.ts.map