///
import { FlexProps } from '../../Flex';
import { StepperProps } from '../../Stepper';
export type StepperStepProps = FlexProps & {
/**
* Boolean to enable clicking the step or not
*/
readonly isAccessible?: boolean;
};
export interface StyledStepperStepProps extends StepperStepProps {
variant: StepperProps['variant'];
}