import { IWalletSearchResponse } from "../../interfaces/wallet";
import { Wallet } from "../../wallet";
import { ResourcePageIterable } from "./resource-page-iterable";
interface IIteratorValue {
    hits: IWalletSearchResponse["hits"];
    list: Wallet[];
}
export declare class WalletPageIterable extends ResourcePageIterable<IWalletSearchResponse, IIteratorValue> {
    protected convertApiResponse(res: IWalletSearchResponse): IIteratorValue;
}
export {};
