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