import type { AttributeSchema, ParsedSelector } from '../public/types.js'; import type { InternalCssSelector } from './parser/types.js'; /** * Normalize an internally parsed CSS selector into the public {@link ParsedSelector} IR. * * @param parsed - Parser output in the internal selector shape * @param schema - Caller-defined attribute vocabulary and coercion rules * @returns Normalized selector intermediate representation (first rule only) * @throws {UnsupportedSelectorError} If the parsed selector uses unsupported features or attributes */ export declare function normalizeFromParsed(parsed: InternalCssSelector, schema: AttributeSchema): ParsedSelector; //# sourceMappingURL=normalize-from-parsed.d.ts.map