import { ToMarkoOptions } from '../../generators/marko/types'; import { TranspilerGenerator } from '../../types/transpiler'; export declare const componentToMarko: TranspilerGenerator; /** * Convert marko expressions to valid html * *
doSomething())> ->
*/ export declare function preprocessHtml(htmlString: string): string; /** * Convert HTML back to marko expressions * *
->
doSomething())> */ export declare function postprocessHtml(htmlString: string): string; /** * Format Marko HTML using the built-in HTML parser for prettier, * given issues with Marko's plugin */ export declare function markoFormatHtml(htmlString: string): string;