/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetRecipientResponse } from './getRecipientResponse'; /** Balance */ export interface GetBalanceResponse { /** Currency */ currency?: string | null; /** Amount available for transferring */ availableAmount?: bigint | null; /** Recipient */ recipient?: GetRecipientResponse | null; transferredAmount?: bigint | null; waitingFundsAmount?: bigint | null; } export declare const getBalanceResponseSchema: Schema;