import TestActionData from "../models/TestActionData"; import { TestAutohealData } from "../models/TestAutohealData"; declare class AutohealDataService { excludedAttributeValueKeywords: string[]; generateAutohealDataForElement(element: HTMLElement, variablesValues: string[], selectorsGeneratorOptions: any): Promise; generatePomAutohealDataForElement(element: HTMLElement, variablesValues: string[], selectorsGeneratorOptions: any): Promise<{ parsedData: any; selectors: any[]; expectedText: any; }>; getTestAutohealDataFileCache(testId: string): any; getPomAutohealDataFileCache(pomAutohealDataId: string): any; getTestAutohealDataFromLocalFile(testId: string): any; getPomAutohealDataFromLocalFile(pomAutohealDataId: string): any; getDefaultAutohealDataFolderPath(testId: string): string; getDefaultPomAutohealDataFolderPath(pomAutohealDataId: string): string; getActionAutohealByContextId(testAutohealData: TestAutohealData, actionContextId: string): import("../packages/preflight-api-types/ViewModels/ActionData").default; getActionAutohealDataByContextId(testAutohealData: TestAutohealData, actionContextId: string): TestActionData; private getSelectorsAsActionData; private getSelectors; getContextAwarenessActionData(el: HTMLElement, isContextAwarenessOn?: boolean): Promise<{ type: string; value: string; }>; getExpectedInnerTextActionData(el: HTMLElement): Promise<{ type: string; value: string; }>; } declare const _default: AutohealDataService; export default _default;