import type { ContainerProps, StepProps, TitleSectionProps } from "./Stepper.interface"; declare const StepperComponents: { Container: ({ children, className }: ContainerProps) => import("react/jsx-runtime").JSX.Element; Step: ({ index, status, size, completeVariant, className, stepButtonProps, onClick, stepTitle, stepDescription, variant, stepClassName, }: StepProps) => import("react/jsx-runtime").JSX.Element; TitleSection: ({ stepTitle, stepDescription, status, size, variant, }: TitleSectionProps) => import("react/jsx-runtime").JSX.Element; }; export default StepperComponents;