export declare enum AppType {
    application = "application",
    library = "library"
}
export type ProjectType = 'application' | 'library';
export interface PackageDependencies {
    dependencies: DependencyEntries;
    devDependencies: DependencyEntries;
}
export interface DependencyEntries {
    [module: string]: string;
}
export declare const PROJECT_TYPE_DEPENDENCIES: {
    [AppType: string]: PackageDependencies;
};
export declare const STYLE_PLUGIN_DEPENDENCIES: {
    [style: string]: PackageDependencies;
};
