export type AnyFunction = (...args: any) => any; export declare function isFunction(value: any): value is AnyFunction; export type SerializedFunctionReturnType = Awaited>; export type DeserializedFunction = (...args: Parameters) => Promise>; //# sourceMappingURL=function.d.ts.map