declare type Attributes = Record<string, string>;
interface SelectorParsing {
    tagName: string;
    attributes: Attributes;
}
/**
 * Parses a selector string into a structured object
 *
 * @param selector - The CSS selector to parse
 * @return The attribute parsing mapping
 */
export default function parseSelector(selector: string): SelectorParsing;
export {};
