import type { ICustomAttributesEntities, ItemOrItemArray } from '../types/index.js';
export type AttributeMatcher = (tag: string, attr: string) => boolean;
export declare function isPropsMatch(props: ItemOrItemArray<string | RegExp>, attr: string): boolean;
export declare function createAttributeMatcher(entities?: ICustomAttributesEntities): AttributeMatcher | undefined;
