import { EventCancelableObject } from 'dojo-interfaces/core'; /** * A simple factory that creates an event object which can be cancelled * * @param options The options for the event */ declare function createCancelableEvent(options: { type: T; target: U; }): EventCancelableObject; export default createCancelableEvent;