import { StepSequenceProps } from "../step-sequence.component"; import { StepSequenceItemProps } from "./step-sequence-item.component"; interface StyledStepSequenceProps { $orientation?: StepSequenceProps["orientation"]; $size: "small" | "medium"; } export declare const StyledStepSequenceItem: import("styled-components").StyledComponent<"li", any, StyledStepSequenceProps, never>; interface StyledIndicatorProps { $status?: StepSequenceItemProps["status"]; $size: "small" | "medium"; } export declare const StyledIndicator: import("styled-components").StyledComponent<"span", any, StyledIndicatorProps, never>; interface StyledIndicatorWrapperProps { $orientation?: StepSequenceProps["orientation"]; $status?: StepSequenceItemProps["status"]; } export declare const StyledIndicatorWrapper: import("styled-components").StyledComponent<"div", any, StyledIndicatorWrapperProps, never>; interface StepLineProps { $orientation?: StepSequenceProps["orientation"]; $isGreen?: boolean; $size?: "small" | "medium"; $roundedSide?: "left" | "right"; } export declare const StepLine: import("styled-components").StyledComponent<"div", any, StepLineProps, never>; interface StyledTitleProps { $orientation?: StepSequenceProps["orientation"]; $size: "small" | "medium"; } export declare const StyledTitle: import("styled-components").StyledComponent<"span", any, StyledTitleProps, never>; export declare const StyledDescription: import("styled-components").StyledComponent<"span", any, StyledTitleProps, never>; export declare const StyledTitleWrapper: import("styled-components").StyledComponent<"div", any, StyledTitleProps, never>; export {};