type TypeValidator = (input: unknown) => I; type AnyFunction = (...args: any[]) => any; export declare const makeServerRpcUnchecked: (serverFunction: F) => F; type ServerFunction = (input: I) => any; export declare const makeServerRpcChecked: (typeValidator: TypeValidator, serverFunction: ServerFunction) => ServerFunction; export {}; //# sourceMappingURL=makeServerRpc.d.ts.map