/**
 * Check if two functions are equal.
 * @param {T} a - T, b: U
 * @param {U} b - U is the type of the second parameter.
 * @returns A boolean value.
 */
export declare function equalFunction<T extends Function, U extends T>(a: T, b: U): boolean;
