import React from 'react'; import { ISvgProps } from '@muya-ui/icon-base'; import { IComponentSizeSpec } from '../specs'; import { IStatusColor } from '../colors'; declare type TabIconType = 'next' | 'prev'; export interface ITabsToken { height: Record; marginRight: Record; padding: Record; indicator: { activeColor: string; activeHeight: number; bgColor: string; bgHeight: number; }; icon?: Record>; iconSize: Record; card: { marginRight: number; height: Record; padding: Record; dividerSize: Record; borderRadius: string; bgColor: string; bgSelectedColor: string; bgHoverColor: string; hoverColor: string; }; capsule: { bgColor: string; bgPadding: Record; radius: Record; inlineBtnRadius?: Record; color: string; clickColor?: string; btnBgColor: IStatusColor; btnPadding: Record; }; panel: { margin: string; fade: number; }; } export {};