import type { FC } from 'react';
import './index.less';
export interface TabStyleSelectProps {
    label?: string;
    name?: string;
    /**
     * 默认值
     */
    defaultValue: string;
    /**
     * 选中的值
     */
    value: string;
    /**
     * 监听下拉改变事件
     */
    onChange?: (data: string) => void;
    DSLCore?: any;
    selectedComp?: any;
}
declare const TabStyleSelect: FC<TabStyleSelectProps>;
export default TabStyleSelect;
