import React from 'react'; import type { FormNativeProps } from '@zbanx/mobile-utils'; import './index.less'; export interface DateRangeTabsProps extends FormNativeProps { /** * @description 标签列表Key,可控制tabs的显示 */ activeKey?: string; visible?: boolean; onVisibleChange?: (visible: boolean) => void; tabs?: { label: React.ReactNode; value: string; }[]; onTabsChange?: (value: string) => Date[]; icon?: false | React.ReactNode; } declare const DateRangeTabs: React.NamedExoticComponent; export default DateRangeTabs;