import type AbortSignal from '../fetch/AbortSignal.js';
export default interface IEventListenerOptions {
    once?: boolean;
    capture?: boolean;
    passive?: boolean;
    signal?: AbortSignal;
}
//# sourceMappingURL=IEventListenerOptions.d.ts.map