import { Query, QueryResult } from "./00-query";
export declare class ByRoleQuery implements Query {
    readonly role: string;
    readonly attributes: string[];
    readonly excludedTags: string[];
    constructor(role: string, attributes?: string[], excludedTags?: string[]);
    execute(): QueryResult[];
    getSelector(): string;
}
