import { FC } from "react"; export interface SuffixQuantityProps { base: string; settleCurrency: string; baseOn: boolean; onChangeBaseQuantity: (bool: boolean) => void; /** 仅仅使用base, 不支持value/cost切换 */ disableCost?: boolean; /** 禁止下拉手势 */ disable?: boolean; } export declare const SuffixQuantity: FC;