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 NextjsProps extends WebsiteProps { } export type Nextjs = B extends { ASSETS: any; } ? never : Worker; export declare function Nextjs(id: string, props?: NextjsProps): Promise>; //# sourceMappingURL=next.d.ts.map