export declare const createMockEventTarget: ( overrides?: Partial> | undefined ) => { addEventListener: | (jest.MockInstance< void, [ type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined ] > & (( type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined ) => void)) | jest.Mock< void, [ type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined ] >; dispatchEvent: | (jest.MockInstance & ((event: Event) => boolean)) | jest.Mock; removeEventListener: | (jest.MockInstance< void, [ type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | EventListenerOptions | undefined ] > & (( type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | EventListenerOptions | undefined ) => void)) | jest.Mock< void, [ type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined ] >; };