import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { ChildrenProp } from "../core/types.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import "../core/index.js";
import { IconProp } from "../icon/icon.types.js";
import "../icon/index.js";
import { BoxProps } from "../box/box.types.js";
import "../box/index.js";
import { StepIndicatorVariant } from "../stepIndicator/stepIndicatorTypes.js";
import { ReactNode } from "react";
//#region src/stepperVertical/stepperVerticalTypes.d.ts
type StepVerticalSize = 'md' | 'sm' | undefined;
type StepperVerticalProps = SystemProps & ThemingProps<'StepperVertical'> & ChildrenProp;
type StepVerticalProps = SystemProps & ChildrenProp & {
  icon?: IconProp;
  number?: number;
  size?: StepVerticalSize;
  description?: ReactNode;
  title?: ReactNode;
  disabled?: boolean;
  className?: string;
  variant?: StepIndicatorVariant;
};
type StepVerticalTailProps = BoxProps & {
  size?: StepVerticalSize;
  variant?: StepIndicatorVariant;
};
type StepVerticalTitleProps = BoxProps & {
  size?: StepVerticalSize;
  variant?: StepIndicatorVariant;
};
//#endregion
export { StepVerticalProps, StepVerticalSize, StepVerticalTailProps, StepVerticalTitleProps, StepperVerticalProps };

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