import React from 'react'; export type ProgressIndicatorStep = { label: string; description?: string; status: 'completed' | 'current' | 'upcoming'; customIcon?: React.ReactNode; line?: boolean; }; export type ProgressIndicatorOrientation = 'horizontal' | 'vertical'; export type ProgressIndicatorType = 'number' | 'checkIcon' | 'customIcon'; export type ProgressIndicatorSize = 'sm' | 'md' | 'lg'; export type ProgressIndicatorVariant = 'accent' | 'primary' | 'static-black' | 'static-white'; export interface ProgressIndicatorProps { steps: ProgressIndicatorStep[]; orientation?: ProgressIndicatorOrientation; type?: ProgressIndicatorType; size?: ProgressIndicatorSize; variant?: ProgressIndicatorVariant; className?: string; } export declare const ProgressIndicator: ({ steps, orientation, type, size, variant, className, }: ProgressIndicatorProps) => import("react/jsx-runtime").JSX.Element;