import { BaseEvent } from "./base-event.js";
/**
 * Fires any time a user pastes into the editor
 */
export declare class RhinoPasteEvent extends BaseEvent implements ClipboardEvent {
    clipboardData: DataTransfer | null;
    originalPasteEvent: Event;
    static eventName: "rhino-paste";
    constructor(clipboardData: DataTransfer | null, originalPasteEvent: Event, options?: EventInit | undefined);
}
declare global {
    interface GlobalEventHandlersEventMap {
        [RhinoPasteEvent.eventName]: RhinoPasteEvent;
    }
}
