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 TanStackStartProps extends ViteProps { } export type TanStackStart = B extends { ASSETS: any; } ? never : Worker; export declare function TanStackStart(id: string, props?: Partial>): Promise>; //# sourceMappingURL=tanstack-start.d.ts.map