import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { SweepAddressRequest } from '../models/SweepAddressRequest'; import { SweepAddressResponse } from '../models/SweepAddressResponse'; export declare class SweepsApiRequestFactory extends BaseAPIRequestFactory { v1SweepsAddress(address: string, sweepAddressRequest: SweepAddressRequest, _options?: Configuration): Promise; } export declare class SweepsApiResponseProcessor { v1SweepsAddressWithHttpInfo(response: ResponseContext): Promise>; }