| 1234567891011121314151617 | 
							- import { Amount } from '../common/types/objects';
 - import { RippleAPI } from '..';
 - export declare type BalanceSheetOptions = {
 -     excludeAddresses?: Array<string>;
 -     ledgerVersion?: number;
 - };
 - export declare type GetBalanceSheet = {
 -     balances?: Array<Amount>;
 -     assets?: Array<Amount>;
 -     obligations?: Array<{
 -         currency: string;
 -         value: string;
 -     }>;
 - };
 - declare function getBalanceSheet(this: RippleAPI, address: string, options?: BalanceSheetOptions): Promise<GetBalanceSheet>;
 - export default getBalanceSheet;
 - //# sourceMappingURL=balance-sheet.d.ts.map
 
 
  |