import type { Bindable, EventHandler } from './Event'; export interface Binder { readonly bind: (registration: Bindable, handler: EventHandler) => void; readonly unbind: (registration: Bindable) => void; readonly unbindAll: () => void; } declare const create: () => Binder; export { create }; //# sourceMappingURL=Binder.d.ts.map