export interface ResourcesOptions {
    /** The paths to the resources to include.
        e.g. './ResourceFolder/css/mystyles.less etc.'
        paths should be relative project root or relative current folder.
        Resources are bundled in the same order as resources appear's within the collection
    */
    resourcePaths: Array<string>;
}
export interface OrderOptions {
    /** (Optional)
        The priority used while creating the bundle, i.e. if several manifests add resources to the same bundle name.
        Higher value will be added before a resources bundled with a manifest with a lower priority.
    */
    priority?: number;
}
