/**
 * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */
export declare enum ProjectType {
    CREATE_REACT_APP = "create-react-app",
    ANGULAR_CLI = "angular-cli",
    VUE_CLI = "vue-cli"
}
/**
 * Reflects project type (React, Angular, ...)
 */
export default class Probe {
    constructor(project: any);
    /**
     * Return true if project is of type create-react-app
     * @return the project type or undefined if nothing detected
     */
    get type(): ProjectType | undefined;
    _hasDependency(pkgName: any): any;
    private readonly _project;
}
