import { Tree, GeneratorCallback } from '@nx/devkit'; import { StormWorkspaceConfig } from '@storm-software/config'; import { BaseGeneratorSchema, BaseGeneratorResult, BaseGeneratorOptions } from '../types.js'; import 'tsup'; import '@storm-software/package-constants/types'; declare const withRunGenerator: (name: string, generatorFn: (tree: Tree, options: TGeneratorSchema, config?: StormWorkspaceConfig) => Promise | BaseGeneratorResult | null | undefined, generatorOptions?: BaseGeneratorOptions) => (tree: Tree, _options: TGeneratorSchema) => Promise; export { withRunGenerator };