import React from 'react'; import { ISvgProps } from '@muya-ui/icon-base'; import { IComponentSizeSpec, IFontSizeSpec, ISpacingSpec } from '../specs'; export interface ITableToken { upArrowIcon?: React.FunctionComponent; bottomArrowIcon?: React.FunctionComponent; filterIcon?: React.FunctionComponent; expandIndent: number; arrowSize: number; fixedZIndex: number; color: string; borderRadius: string; headOrFooterBackground: string; headOrFooterFontWeight: number; headOrFooterColor: string; headOrFooterHoverBackground: string; tableBackground: string; trBackground: { stripe: string; normal: string; hover: string; }; leftFixedColumnBoxShadow: string; rightFixedColumnBoxShadow: string; sizeData: Record; filterData: Record; paginationMargin: Record; }