import { OperatorFunction } from 'rxjs'; import { Interceptor } from '../types'; import { ResponseType } from '../types/response-type'; export type HttpMethodOptions = { path?: string; method?: string; headers?: Record; interceptors?: Array; responseType?: ResponseType; operators?: OperatorFunction[]; }; export declare function getFromInstanceMethodMetadata(instance: any, methodName: string): HttpMethodOptions | undefined;