import type { Node } from './tree'; import { Context } from './context'; /** * Given a root node (usually from a module) render to CSS */ export declare const renderCss: (root: Node, context: Context) => { /** * @todo - patch document in browser */ $toCSS: () => string; $root: Node; };