export interface IAngularConfigApp {
    name?: string;
}
export interface IAngularConfig {
    apps: IAngularConfigApp[];
}
export declare class LsAngularApps {
    static testPath(path?: string): Promise<string>;
    static getAngularJSON(path?: string): Promise<IAngularConfig>;
    static mapAppNames(apps: IAngularConfigApp[]): Array<string | number>;
}
