import { BaseEvent } from "./base-event.js";
/**
 * Fires any time LitElement calls the "updated" function. This is a good event for tracking changes to the editor as it includes both the host Web Component and the underlying TipTap instance.
 */
export declare class RhinoUpdateEvent extends BaseEvent {
    static eventName: "rhino-update";
    constructor(options?: EventInit | undefined);
}
declare global {
    interface GlobalEventHandlersEventMap {
        [RhinoUpdateEvent.eventName]: RhinoUpdateEvent;
    }
}
