declare type Attributes = Record; 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 {};