import React from "react"; import { SpaceProps } from "styled-system"; import { TagProps } from "../../__internal__/utils/helpers/tags"; export interface StepSequenceProps extends SpaceProps, TagProps { /** Step sequence items to be rendered. */ children: React.ReactNode; /** Orientation of the component. */ orientation?: "horizontal" | "vertical"; /** The size of the component. */ size?: "small" | "medium"; } export declare const StepSequence: ({ children, orientation, size, ...props }: StepSequenceProps) => React.JSX.Element; export default StepSequence;