import { StyleVariant, parseClassString } from './tailwind-parser'; interface NodeTree { [key: string]: ElementNode | TextNode; } interface ElementNode { type: 'element'; tag: string; classes: Record; attrs: Record; events: Record; style: Record; styleVariables: Record; variants: StyleVariant[]; children: string[]; } interface TextNode { type: 'text'; value: { type: 'value'; value: string; }; } export { parseClassString }; export declare function tailwindToToddle(html: string): NodeTree;