export declare const callNearRpc: ({ params, method, rpcUrl }: { params: any; method: any; rpcUrl: any; }) => Promise<{ result: Record; error: unknown; } | undefined>; export declare const requestFromNearRpc: (body: Record, rpcUrl: string) => Promise<{ result: Record; error: unknown; } | undefined>; export declare const callViewMethod: ({ contractId, method, args, rpcUrl, }: { contractId: string; method: string; args?: Record; rpcUrl?: string; }) => Promise; //# sourceMappingURL=util.d.ts.map