import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CreateWalletRequest } from '../models/CreateWalletRequest'; import { CursorPageWallet } from '../models/CursorPageWallet'; import { UpdateWalletRequest } from '../models/UpdateWalletRequest'; import { Wallet } from '../models/Wallet'; export declare class WalletsApiRequestFactory extends BaseAPIRequestFactory { v1WalletsCreate(createWalletRequest: CreateWalletRequest, _options?: Configuration): Promise; v1WalletsDelete(walletId: string, _options?: Configuration): Promise; v1WalletsList(cursor?: string, limit?: number, _options?: Configuration): Promise; v1WalletsRetrieve(walletId: string, _options?: Configuration): Promise; v1WalletsUpdate(walletId: string, updateWalletRequest: UpdateWalletRequest, _options?: Configuration): Promise; } export declare class WalletsApiResponseProcessor { v1WalletsCreateWithHttpInfo(response: ResponseContext): Promise>; v1WalletsDeleteWithHttpInfo(response: ResponseContext): Promise>; v1WalletsListWithHttpInfo(response: ResponseContext): Promise>; v1WalletsRetrieveWithHttpInfo(response: ResponseContext): Promise>; v1WalletsUpdateWithHttpInfo(response: ResponseContext): Promise>; }