/**
 * Functions that modifiy the properties of DOM events.
 *
 * They are chainable.
 * @module
 */
export type EventModifier<E extends Event = Event> = (e: E) => E;
export declare const stopPropagation: EventModifier;
export declare const preventDefault: EventModifier;
