import { CnSelectProps } from "../../cn-select";
import { currencyRegionType } from './currency-region-type';
export interface CnCurrencySelectProps extends CnSelectProps {
    /**
     * 可展示的货币范围
     */
    currencyDataSource?: currencyRegionType[];
}
