import * as React from 'react'; import { CommonProps } from '../../../utilities/commonProps'; declare type Props = { stepCount: number; totalStepCount: number; } & CommonProps; declare const GuideStepCount: React.FC; export default GuideStepCount;