/**
* Useful for taking code generated on the server and transpiling it to the client
* @example
* function run(name: string) {
* console.log(name);
* }
* const html = `
*
* `;
* const transpiled = babelCodeForBrowser({ code: html });
*/
export declare const babelCodeForBrowser: (opt: {
code: string;
minified?: boolean;
}) => Promise;
//# sourceMappingURL=babel-code-for-browser.d.ts.map