declare type ArgsProcessor = (...args) => any[] | undefined; declare type EventHandler = (...args) => void; /** * Decorates an event handler with a processor */ declare const from: (processor: ArgsProcessor, handler: EventHandler) => EventHandler; /** * Processor that handles input DOM events */ declare const inputEvent: ArgsProcessor; /** * Processor that handles change DOM events on checkboxes */ declare const checkboxEvent: ArgsProcessor; /** * Automatic processor that handles various events and hooks */ declare const auto: (...eventCallbackArgs: any[]) => any[]; export { ArgsProcessor, EventHandler, from, inputEvent, checkboxEvent, auto };