export declare function indentLine(line: string, size?: number): string; type JSXLike = { tag: string; props?: Record; children?: JSXLike[]; }; export declare function jsxLikeStringify(jsxLike: JSXLike): string; export {};