import { BinanceSignedClient } from '../../../clients';
export interface GetMaxAmountForAdjustCrossCollateralLTVV2Payload {
    loadCoin: string;
    collateralCoin: string;
}
export interface GetMaxAmountForAdjustCrossCollateralLTVV2Response {
    maxInAmount: number;
    maxOutAmount: number;
}
export declare function getMaxAmountForAdjustCrossCollateralLTVV2(client: BinanceSignedClient, payload: GetMaxAmountForAdjustCrossCollateralLTVV2Payload): Promise<GetMaxAmountForAdjustCrossCollateralLTVV2Response>;
