import { ElementState, type ElementDescriptor } from '@reticlehq/core'; export declare function getRole(el: Element): string; export declare function getAccessibleName(el: Element): string; export declare function getStates(el: Element, visible?: boolean): ElementState[]; export declare function isSensitiveField(el: Element): boolean; export declare function getValue(el: Element): string | undefined; export declare function isInViewport(el: Element, memo?: Map): boolean; export declare function isVisible(el: Element, memo?: Map): boolean; export declare function describe(el: Element, memo?: Map): ElementDescriptor;