import { ServiceCollection } from "../models"; /** * Factory for collections of services */ export declare class ServiceCollectionFactory { /** * Create collection of shared services * * @returns {ServiceCollection} Service Collection */ static create(): ServiceCollection; }