import Client from './client'; /** * Usage: clients will invoke this with their main renderer. * * For reference, the HTML template is to be found in * ../../../templates/index.ejs. This template is in turn managed by * packages/webpack/webpack.config.js. * * @param renderer a function that injects its content into the given * container * */ declare const _default: (client: Client) => Promise; export default _default; /** For booting into an external browser sandbox, such as codesandbox.io */ export declare function bootIntoSandbox(): Promise;