import { BinanceClient } from '../../../clients';
import { usdtM } from '../../../info';
export interface TopTraderLongShortRatioAccountsPayload {
    symbol: string;
    period: usdtM.InterestPeriod;
    limit?: number;
    startTime?: Date | number;
    endTime?: Date | number;
}
export interface TopTraderLongShortRatioAccountsResponse {
    symbol: string;
    longShortRatio: number;
    longAccount: number;
    shortAccount: number;
    timestamp: Date;
}
export declare function topTraderLongShortRatioAccounts(client: BinanceClient, payload: TopTraderLongShortRatioAccountsPayload): Promise<TopTraderLongShortRatioAccountsResponse[]>;
