import React from 'react'; import { ISvgProps } from '@muya-ui/icon-base'; import { IItemInteractionStatus, IItemStatus } from '../../interfaces'; import { IComponentSizeSpec, IFontSizeSpec } from '../specs'; export interface ICascaderToken { overscan: number; menuMarginVertical: number; menuMarginRight: number; borderRadius: string; offset: Record; maxHeight: Record; background: string; item: { marginRight: number; paddingHorizontal: number; height: Record; fontLevel: Record; iconMargin: string; background: Record; color: Record; fontWeight: Record; checkboxMarginRight: number; multipleSelectFontWeight: number; }; menuExpandIcon?: React.FunctionComponent; expandIcon?: React.FunctionComponent; notFoundPanelHeight: number; }