export type SelectorKind = 'none' | 'whitespace' | 'grammar' | 'tag' | 'id' | 'class' | 'pseudo-class' | 'pseudo-element' | 'attribute'; export type Selector = { type: SelectorKind; content: string; valid: boolean; }; export declare function parseSelectorsRich(selectorGroup: string): Selector[]; //# sourceMappingURL=parseSelectorsRich.d.ts.map