import Notification from './Notification';
/**
 * @export
 * @class EmailNotification
 */
export declare class EmailNotification extends Notification {
    /**
     * @type {string[]}
     * @memberof EmailNotification
     */
    emails?: string[];
    constructor(obj?: Partial<EmailNotification>);
}
export default EmailNotification;
