export { findElementBySelectorAndText, findElementByShorthand, findElementByCriteria, setElementOutputs }; declare function setElementOutputs({ element }: { element: any; }): Promise; declare function findElementByShorthand({ string, timeout, driver }: { string: any; timeout?: number; driver: any; }): Promise<{ element: any; foundBy: string; } | { element: null; foundBy: null; }>; declare function findElementBySelectorAndText({ selector, text, timeout, driver, }: { selector: any; text: any; timeout: any; driver: any; }): Promise<{ element: null; foundBy: null; } | { element: any; foundBy: string; }>; declare function findElementByCriteria({ selector, elementText, elementId, elementTestId, elementClass, elementAttribute, elementAria, timeout, driver, all, }: { selector?: any; elementText?: any; elementId?: any; elementTestId?: any; elementClass?: any; elementAttribute?: any; elementAria?: any; timeout?: number; driver: any; all?: boolean; }): Promise<{ element: null; foundBy: null; error: string; elements?: undefined; } | { element: any; elements: any[]; foundBy: string[]; error: null; } | { element: null; elements: never[]; foundBy: null; error: string; }>; //# sourceMappingURL=findStrategies.d.ts.map