import * as yup from 'yup'; import { AssetVerification } from '../../../assets'; export interface GetBalancesRequest { account?: string; confirmations?: number; } export interface GetBalancesResponse { account: string; balances: { assetId: string; confirmed: string; unconfirmed: string; unconfirmedCount: number; pending: string; pendingCount: number; available: string; availableNoteCount: number; blockHash: string | null; sequence: number | null; /** * @deprecated Please use getAsset endpoint to get this information */ assetName: string; /** * @deprecated Please use getAsset endpoint to get this information */ assetCreator: string; /** * @deprecated Please use getAsset endpoint to get this information * */ assetOwner: string; /** * @deprecated Please use getAsset endpoint to get this information * */ assetVerification: { status: AssetVerification['status']; }; }[]; } export declare const GetBalancesRequestSchema: yup.ObjectSchema; export declare const GetBalancesResponseSchema: yup.ObjectSchema; //# sourceMappingURL=getBalances.d.ts.map