import { JSX } from "solid-js"; /** * Solid event handlers can be a plain callback OR a tuple [handler, item]. * This function calls the handler appropriately (if defined). */ export declare function callEventHandler(h: JSX.EventHandlerUnion | undefined, e: Event): { isPropagationStopped: boolean; };