import { BaseEvent } from "./base-event.js";
/**
 * A mapping of the "trix-attachment-add" for rhino that follows the same construct.
 *   Use this to prevent uploading a file by calling `event.preventDefault()`
 */
export declare class FileAcceptEvent extends BaseEvent {
    file: File;
    static eventName: "rhino-file-accept";
    constructor(file: File, options?: EventInit | undefined);
}
declare global {
    interface GlobalEventHandlersEventMap {
        [FileAcceptEvent.eventName]: FileAcceptEvent;
    }
}
