import { HttpClient } from '@/types';
import { CostRequest, CostResponse } from '@/types';
/**
 * Class for fetching data from the server
 */
export declare class Fetching {
    private readonly httpClient;
    constructor(httpClient: HttpClient);
    cost(request: CostRequest): Promise<CostResponse>;
}
//# sourceMappingURL=Fetching.d.ts.map