/** * 判断是否存在伪类文本 */ export declare const isExistPseudoText: (node: Element) => HasPseudoType; interface HasPseudoType { /** * 是否存在 */ exist: boolean; /** * 是否存在 before 伪类 */ before: boolean; /** * 是否存在after 伪类 */ after: boolean; } /** * 判断是否存在图形伪类 */ export declare const isExistPseudoShape: (node: Element) => HasPseudoType; export {};