import { type RenderOptions } from '@qwik.dev/core'; /** * Development entry point using only client-side modules: * * - Do not use this mode in production! * - No SSR * - No portion of the application is pre-rendered on the server. * - All of the application is running eagerly in the browser. * - More code is transferred to the browser than in SSR mode. * - Optimizer/Serialization/Deserialization code is not exercised! */ export default function (opts: RenderOptions): Promise;