import { type HTMLElementExtended, type HTMLStyleElementExtended } from './types'; /** * Check if a node is a `style` node with type guard * @param node Node * @returns boolean */ export declare function isStyleElement(node: Node): node is HTMLStyleElementExtended; export declare function isExtendedElement(node?: Node): node is HTMLElementExtended;