import { METHOD } from '../utils/method'; import { IBaseRequestAction } from '../actions/BaseRequestAction'; import { ThrottleOptions } from './HttpServiceBuilder'; export declare type OrphanRequestOptions = Partial> & { uri: string; requestOptions?: T; throttle?: ThrottleOptions; }; export declare class OrphanHttpService { protected readonly config: OrphanRequestOptions; protected readonly method: METHOD; constructor(config: OrphanRequestOptions, method: METHOD); collect(): IBaseRequestAction; }