import { BinanceSignedClient } from '../../../clients';
export interface RedeemBLVTPayload {
    tokenName: string;
    amount: number;
}
export interface RedeemBLVTResponse {
    id: number;
    status: 'SUCCESS' | 'PENDING' | 'FAILTURE';
    tokenName: string;
    redeemAmount: number;
    amount: number;
    timestamp: Date;
}
export declare function redeemBLVT(client: BinanceSignedClient, payload: RedeemBLVTPayload): Promise<RedeemBLVTResponse>;
