import { BaseEvent } from "./base-event.js";
/**
 * Fires any time a user pastes into the editor
 */
export declare class RhinoBlurEvent extends BaseEvent {
    static eventName: "rhino-blur";
    constructor(options?: EventInit | undefined);
}
declare global {
    interface GlobalEventHandlersEventMap {
        [RhinoBlurEvent.eventName]: RhinoBlurEvent;
    }
}
