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