export declare const getAutocompletes: (field: HTMLElement | HTMLSelectElement) => string[]; export declare const getPageDescriptionText: (doc: Document) => string; export declare const getNodeText: (node: HTMLElement) => string; export declare const getNodeAttributes: (node: HTMLElement) => string; export declare const getAllNodeHaystacks: (node: HTMLElement) => string[]; export declare const getFormText: (form: HTMLElement) => string; export declare const getFieldLabelText: (field: HTMLElement) => string; export declare const getFieldHaystacks: (field: HTMLElement) => { fieldAttrs: string[]; fieldText: string; labelText: string; }; export declare const getAllFieldHaystacks: (field: HTMLElement) => string[]; export declare const getNearestHeadingsText: (el: HTMLElement) => string;