import { GeneratorCallback, Tree } from '@nx/devkit'; import type { Schema } from './schema'; /** * Scaffolds a Cloudflare Worker application by delegating to Cloudflare's * create-cloudflare (C3) CLI, then imports the result into the Nx workspace and * wires it up (Wrangler target inference, workspace-managed dependencies). */ export declare function createCloudflareGenerator(tree: Tree, schema: Schema): Promise; export default createCloudflareGenerator; export declare const createCloudflareSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise;