import type { Assets } from "../assets.ts"; import type { Bindings } from "../bindings.ts"; import { type ViteProps } from "../vite/vite.ts"; import type { Worker } from "../worker.ts"; export interface ReactRouterProps extends ViteProps { /** * @default workers/app.ts */ main?: string; } export type ReactRouter = B extends { ASSETS: any; } ? never : Worker; export declare function ReactRouter(id: string, props?: ReactRouterProps): Promise>; //# sourceMappingURL=react-router.d.ts.map