/// import { Status } from './SegmentedProgress'; import { Color } from '../../interfaces'; export declare const COLORS: Record; export declare const Container: import("styled-components").StyledComponent<({ background, children, elevation, noPadding, title, transparent, subtitle, subtitlePlacement, subtitleStyle, ...other }: import("../Card").CardProps & import("react").HTMLAttributes) => JSX.Element, any, {}, never>; interface ProgressStepProps { /** Progress status */ status: 'pending' | 'warn' | 'error' | 'complete'; } export declare const ProgressStep: import("styled-components").StyledComponent<"div", any, ProgressStepProps, never>; export {};