import React from 'react'; import { ISvgProps } from '@muya-ui/icon-base'; import { IBorderColor } from '../colors'; import { IShadowsSpecRecord } from '../shadows'; import { IComponentSizeSpec } from '../specs'; declare type IStepStatus = 'wait' | 'finish' | 'process' | 'error' | 'hover' | 'clicked'; export interface IStepsToken { content: { fontSize: Record; lineHeight: Record; fontWeight: number; color: Record; background: Record; width: Record; btnSpacing: number; verticalPaddingBottom: number; verticalMarginBottom: number; }; progressLine: { bgColor: string; finishBgColor: string; minWidth: number; vertical: { top: Record; left: Record; }; }; title: { color: Record; marginRight: Record; }; circle: { size: Record; marginRight: Record; }; description: { maxWidth: number; marginLeft: Record; paddingLeft: Record; marginTop: Record; }; finishIcon?: React.FunctionComponent; errorIcon?: React.FunctionComponent; btn: { width: number; height: number; background: string; borderColor: IBorderColor; boxShadow: IShadowsSpecRecord; color: string; radius: string; }; } export {};