import { ProjectType } from '@nx/devkit'; import { NormalizedSchema } from '../generators/project/schema'; import { NxQuarkusPluginOptions } from '../graph/plugin'; export declare function getProjectTypeAndTargetsFromFile(projectRootFile: string, options: NxQuarkusPluginOptions): { projectType: ProjectType; targets: {}; }; export declare function getProjectTypeAndTargetsFromOptions(options: NormalizedSchema): { projectType: ProjectType; targets: {}; };