import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
import { IconProp } from "../icon/icon.types.js";
//#region src/stepper/stepperIndicatorTypes.d.ts
type StepperIndicatorSize = 'md' | 'sm';
type StepperIndicatorVariant = 'active' | 'completed' | 'optional' | 'pending' | 'error';
type StepperIndicatorProps = SystemProps & ThemingProps<'StepperIndicator'> & {
  icon?: IconProp;
  className?: string;
  number?: number;
  size?: StepperIndicatorSize;
  variant?: StepperIndicatorVariant;
};
//#endregion
export { StepperIndicatorProps, StepperIndicatorSize, StepperIndicatorVariant };

//# sourceMappingURL=stepperIndicatorTypes.d.ts.map