export interface Configuration {
    starterApps: Array<any>;
    sampleApps: any;
    appLevelConfig: any;
}
export interface AppConfig {
    source: string;
    stack: string;
    private?: boolean;
    branch?: string;
    appConfigKey?: string;
    master_locale?: string;
}
declare const config: Configuration;
export default config;
export declare function getAppLevelConfigByName(appConfigKey: string): any;
