import { Notification } from "./notification.js";
/**
 * Delegate for {@link Subscription}.
 * @public
 */
export interface SubscriptionDelegate {
    /**
     * Called upon receiving an incoming NOTIFY request.
     * @param notification - A notification. See {@link Notification} for details.
     */
    onNotify(notification: Notification): void;
}
