import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class SubscriptionsService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); postSubscription: (data: any) => Promise<{}>; getSubscriptions: (data?: any) => Promise<{}>; getSubscriptionsSearch: (data: any) => Promise<{}>; deleteSubscriptions: (data: any) => Promise<{}>; } export { SubscriptionsService }; //# sourceMappingURL=subscription.d.ts.map