import { SubAppDef, SubAppOptions } from "./types"; export * from "./types"; export * from "./envhooks"; export * from "./subapp-ready"; export * from "./client-render-pipeline"; export * from "./subapp-render-pipeline"; export * from "./client-framework-lib"; /** * **internal use only** * * @param opts - declare subapp options * @param override - define overrides * @returns subapp definition */ export declare function __declareSubApp(opts: SubAppOptions, override?: Partial): SubAppDef;