import ProxyService from './Proxy'; import { EmptyResponse, PushNotifications } from './types'; export default class PushNotificationsService { proxy: ProxyService; subscriptions: SubscriptionsService; events: EventsService; constructor(proxy: ProxyService); base64Encode: (str: string) => string; } declare class SubscriptionsService { proxy: ProxyService; readonly route: string; constructor(proxy: ProxyService); create(params: PushNotifications.SubscriptionsCreateParams): Promise; list(): Promise; delete(id: string | number): Promise; } declare class EventsService { proxy: ProxyService; readonly route: string; constructor(proxy: ProxyService); create(event: PushNotifications.EventsCreateParams): Promise; } export {}; //# sourceMappingURL=PushNotifications.d.ts.map