/**
 * Utility function to call multiple event handlers
 * Similar to the callMultiple function in the React version
 *
 * @param handlers List of event handlers to call
 * @returns A function that calls all handlers with the same arguments
 */
export declare function callMultiple<T = any>(...handlers: Array<((e: T) => void) | undefined>): (e: T) => void;
