export interface Schema {
    /** Name of the project to target. */
    project: string;
    workspace: WorkspaceType;
}
export declare type WorkspaceType = 'ng' | 'nx';
