declare type ProgressPillsProps = { active?: number; aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; dark?: boolean; id?: string; steps?: number; title?: string; value?: string; }; declare const ProgressPills: (props: ProgressPillsProps) => JSX.Element; export default ProgressPills;