/** Makes one function from multiple functions. Used to combine event listener callbacks */
export declare const combineFunctions: <A, T extends (...args: A[]) => any>(...list: T[]) => (...args: Parameters<T>) => void;
