import { Tree } from '@nx/devkit'; import { ServerlessGeneratorSchema } from './schema'; type NormalizedSchema = ReturnType; export declare function denoServerlessGenerator(tree: Tree, options: ServerlessGeneratorSchema): Promise; declare function normalizeOptions(tree: Tree, options: ServerlessGeneratorSchema): { projectName: string; projectRoot: string; projectDirectory: string; parsedTags: string[]; rootProject: boolean; name: string; tags?: string; directory?: string; platform?: "none" | "netlify"; linter?: "deno" | "none"; unitTestRunner?: "deno" | "none"; site?: string; bundler?: "esbuild" | "deno_emit"; }; export declare function addProject(tree: Tree, opts: NormalizedSchema): void; export default denoServerlessGenerator;