import { BinanceSignedClient } from '../../../clients';
export interface GetMaxAmountForAdjustCrossCollateralLTVResponse {
    maxInAmount: number;
    maxOutAmount: number;
}
export declare function getMaxAmountForAdjustCrossCollateralLTV(client: BinanceSignedClient, collateralCoin: string): Promise<GetMaxAmountForAdjustCrossCollateralLTVResponse>;
