export declare type BundleType = string; export declare type Uri = string; export declare type Name = string; export declare type Version = string; export declare type FileName = string; export declare type Id = string; export declare type Deps = Id[]; export interface Bundle { bundleType: BundleType; uri?: Uri; name: Name; version: Version; fileName: FileName; deps?: Deps; id: Id; } export declare type Bundles = Bundle[]; /** * * Bundle Configuration Schema * */ export interface BundleConfig { bundles?: Bundles; [k: string]: any; }