import { AttributeMap } from './utils'; export interface Comparison { all: string[]; matching: string[]; } export interface ElementComparison { attributes: Comparison; classes: Comparison; labels: Comparison; } export declare const compareListAttributes: (target?: string, other?: string) => Comparison; export declare const compareAttributes: (targetAttributes: AttributeMap, otherAttributes: AttributeMap) => Comparison; export declare const isTagSame: (target: HTMLElement, other: HTMLElement) => boolean; export declare const isTextSame: (target: HTMLElement, other: HTMLElement) => boolean; export declare const compareElements: (target: HTMLElement, other: HTMLElement) => ElementComparison;