import { ReactNode } from 'react';
export interface StepperProps {
    /**
     * If set to 'centered', then the step title will be positioned under the icon.
     */
    alignment?: 'left' | 'centered';
    /**
     * Two or more <Step /> components.
     */
    children?: ReactNode;
    /**
     * The component orientation (layout flow direction).
     */
    orientation: 'horizontal' | 'vertical';
}
