import { BinanceSignedClient } from '../../../clients';
export interface GetLeftDailyRedemptionQuotaOfFlexibleProductPayload {
    productId: string;
    type: 'FAST' | 'NORMAL';
}
export interface GetLeftDailyRedemptionQuotaOfFlexibleProductResponse {
    asset: string;
    dailyQuota: number;
    leftQuota: number;
    minRedemptionAmount: number;
}
export declare function getLeftDailyRedemptionQuotaOfFlexibleProduct(client: BinanceSignedClient, payload: GetLeftDailyRedemptionQuotaOfFlexibleProductPayload): Promise<GetLeftDailyRedemptionQuotaOfFlexibleProductResponse>;
