import { ElementType, HTMLAttributes } from 'react';
import { ExternalStyles } from '../../styles';
import { Omit } from '../../util';
export type StepperDirection = 'horizontal' | 'vertical';
export interface StepperProps extends Omit, 'style'> {
/**
* Defines the layout direction of the stepper (horizontal or vertical)
* @default 'horizontal'
*/
direction?: StepperDirection;
/**
* Defines the spacing between individual steps in rem units.
* If not provided, the stepper will behave responsively, automatically stretching to fill the parent container.
*/
gap?: number;
style?: ExternalStyles;
overrides?: {
Root?: ElementType;
};
}
export declare function Stepper(props: StepperProps): JSX.Element;