import { TreeNode } from 'stricter-htmlparser2';
export interface RootNode {
    type: 'tag';
    name: symbol;
    attribs: Record<string, string>;
    children: TreeNode[];
    singleQuoteAttribs?: Record<string, any>;
}
export declare function parse(options?: {}): void;
