import { Tree } from '@nx/devkit'; import type { InitGeneratorSchema } from './schema'; /** * Initializes the @naxodev/nx-cloudflare plugin in a workspace: installs the * required runtime dependencies and registers the inference plugin in nx.json. */ export declare function initGenerator(tree: Tree, schema: InitGeneratorSchema): Promise<() => Promise>; export default initGenerator; export declare const initSchematic: (generatorOptions: InitGeneratorSchema) => (tree: any, context: any) => Promise;