/**
 * Get external party balance information
 *
 * @example
 *   ```typescript
 *   const balance = await client.getExternalPartyBalance({ partyId: 'party123' });
 *
 *   ```;
 */
export declare const GetExternalPartyBalance: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
    partyId: string;
}, {
    party_id: string;
    total_unlocked_coin: string;
    total_locked_coin: string;
    total_coin_holdings: string;
    accumulated_holding_fees_unlocked: string;
    accumulated_holding_fees_locked: string;
    accumulated_holding_fees_total: string;
    total_available_coin: string;
    computed_as_of_round: number;
}>;
//# sourceMappingURL=get-external-party-balance.d.ts.map