import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class CollectionService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); postCollection: (data: any) => Promise<{}>; getCollections: (data: any) => Promise<{}>; getCollectionSearch: (data: any) => Promise<{}>; deleteCollection: (data: any) => Promise<{}>; } export { CollectionService }; //# sourceMappingURL=collection.d.ts.map