import { Tree } from '@nx/devkit';
export type ProjectProperties = {
    projectName: string;
    projectRoot: string;
    projectDirectory: string;
    appsDir: string;
};
type PackageProperties = {
    name: string;
    directory?: string;
};
export declare const injectProjectProperties: <T extends PackageProperties>(tree: Tree, options: T) => T & ProjectProperties;
export {};
