import { MouseEvent, ComponentClass } from 'react' import { CommonEventFunction } from '@tarojs/components/types/common' import AtComponent from './base' export interface Icon { value?: string activeColor?: string inactiveColor?: string size?: string|number } export interface Item { title?: string desc?: string icon?: Icon success?: boolean error?: boolean } export interface AtStepsProps extends AtComponent { current: number items?: Array onChange: (current: number, event: CommonEventFunction) => void } declare const AtSteps: ComponentClass export default AtSteps