export type Method = 'get' | 'GET' | 'delete' | 'DELETE' | 'head' | 'HEAD' | 'options' | 'OPTIONS' | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' | 'purge' | 'PURGE' | 'link' | 'LINK' | 'unlink' | 'UNLINK'; export interface RpcOptions { service: string; path: string; method?: Method; headers?: any; params?: any; data?: any; timeout?: number; } export declare class EurekaClient { private readonly httpService; private readonly discovery; rpc(options: RpcOptions): Promise; }