export declare const attributeTitles: Record<string, string[]>;
export declare const elementAttributePairTitles: Record<string, {
    attributes: Array<string | [string, RegExp | string]>;
    element: string;
}>;
export declare const elementTitles: Record<string, string[]>;
export declare const getMatchingElementTitles: ({ tagName }: {
    tagName: string;
}) => string[];
export declare const getMatchingAttributeTitles: ({ attributes }: {
    attributes: string[];
}) => string[];
export declare const getMatchingElementAttributePairTitles: ({ tagName, attributes }: {
    attributes: Record<string, string>;
    tagName: string;
}) => string[];
//# sourceMappingURL=html-titles.d.ts.map