/**
 * Calls all functions in the order they were chained with the same arguments.
 */
export declare function chain<T extends unknown[]>(...callbacks: (void | ((...args: T) => void) | (() => void))[]): (...args: T) => void;
