import type { Assets } from "./assets.js"; import type { Bindings } from "./bindings.js"; import { type WebsiteProps } from "./website.js"; import type { Worker } from "./worker.js"; export interface TanStackStartProps extends WebsiteProps { } export type TanStackStart = B extends { ASSETS: any; } ? never : Worker; export declare function TanStackStart(id: string, props?: Partial>): Promise>; //# sourceMappingURL=tanstack-start.d.ts.map