import type { EventCallback } from "./events.js"; import type { ReadableBox } from "../box/box.svelte.js"; /** * Composes event handlers into a single function that can be called with an event. * If the previous handler cancels the event using `event.preventDefault()`, the handlers * that follow will not be called. */ export declare function composeHandlers(...handlers: Array | ReadableBox> | undefined>): (e: E) => void;