import { CompatElement } from "./types";
export declare function renderToString(node: CompatElement | string): string;
export declare function renderSelfToString(node: CompatElement): {
tagName: string;
attrs: Record<string, any>;
children: string;
};