import { ReactElement } from 'react'; export interface ProgressCounterProps { /** * A number attribute which indicates the current step the progress counter is on */ currentStep: number; /** * A number attribute which indicates the total number of steps for the progress counter */ totalSteps: number; } declare const ProgressCounter: ({ currentStep, totalSteps, }: ProgressCounterProps) => ReactElement; export default ProgressCounter;