import { BaseApiClass } from './Base';
export interface NotificationOptions {
    url?: string;
    message?: string;
}
export declare class Notification extends BaseApiClass {
    static staticMethods: string[];
    static staticSyncMethods: string[];
    static instanceMethods: string[];
    static connection: any;
    constructor(options: NotificationOptions);
    static create(options: NotificationOptions): Promise<Notification>;
}
