import { SVGIcon } from "@progress/kendo-react-common";
import {
  StepProps as KendoStepProps,
  StepperChangeEvent as KendoStepperChangeEvent,
  StepperFocusEvent as KendoStepperFocusEvent,
} from "@progress/kendo-react-layout";
export interface StepperProps {
  dataTestId?: string;
  animationDuration?: number | boolean;
  children?: any;
  className?: string;
  dir?: string;
  disabled?: boolean;
  errorIcon?: string;
  errorSVGIcon?: SVGIcon;
  item?: React.ComponentType<KendoStepProps>;
  items: KendoStepProps[];
  linear?: boolean;
  mode?: "labels" | "steps";
  orientation?: "horizontal" | "vertical";
  style?: React.CSSProperties;
  successIcon?: string;
  successSVGIcon?: SVGIcon;
  value: number;
  onChange: (event: KendoStepperChangeEvent) => void;
  onFocus: (event: KendoStepperFocusEvent) => void;
}
