export declare const mergeFunctions: <F extends ((...args: any[]) => any) | undefined>(...funcs: F[]) => (...args: F extends Function ? Parameters<F> : never) => void;
