import { BinanceSignedClient } from '../../../clients';
export interface GetSummaryOfSubAccountFuturesAccountResponse {
    totalInitialMargin: number;
    totalMaintenanceMargin: number;
    totalMarginBalance: number;
    totalOpenOrderInitialMargin: number;
    totalPositionInitialMargin: number;
    totalUnrealizedProfit: number;
    totalWalletBalance: number;
    asset: string;
    subAccountList: {
        email: string;
        totalInitialMargin: number;
        totalMaintenanceMargin: number;
        totalMarginBalance: number;
        totalOpenOrderInitialMargin: number;
        totalPositionInitialMargin: number;
        totalUnrealizedProfit: number;
        totalWalletBalance: number;
        asset: string;
    }[];
}
export declare function getSummaryOfSubAccountFuturesAccount(client: BinanceSignedClient): Promise<GetSummaryOfSubAccountFuturesAccountResponse>;
