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