export * from "./ReactBase"; export function findByHook(base: UniDriver, hook: string): any; export function findByHookAtIndex(base: UniDriver, hook: string, index: any): any; export function countByHook(base: UniDriver, hook: string): any; export function getElement(base: UniDriver): Promise; export function getDataAttributeValue(base: UniDriver, attr: string): Promise; export function isElementFocused(element: UniDriver): Promise; export function baseUniDriverFactory(base: any): { /** * Checks whether the component found with the given data hook * @returns {Promise} */ exists: () => Promise; /** * Gets the component root element * @returns {Promise} */ element: () => Promise; /** * Clicks on the component root element * @returns {Promise} */ click: () => Promise; }; //# sourceMappingURL=index.d.ts.map