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