import { Configurer } from '../Core/index'; import { NotifiableApplication } from './NotifTypes'; /**Native Push Notifications for Android, iOS ...*/ export declare class NotifConfigurer extends Configurer { /** * Administrative API for notifications management. * * You can create and list your applications * */ /** * Creates an application * * The created application can then be referenced when registering a device. * */ createApp(body: NotifiableApplication): Promise; }