export interface Query {
    execute(): QueryResult[];
    getSelector(): string;
}
export declare class QueryResult {
    readonly domNode: HTMLElement;
    readonly linkedNodes: HTMLElement[];
    constructor(domNode: HTMLElement, linkedNodes?: HTMLElement[]);
}
