import { type FlexboxProps, type SpaceProps, type TypographyProps } from "styled-system"; export declare const StatusIndicatorValues: { readonly neutral: "neutral"; readonly dark: "dark"; readonly danger: "danger"; readonly informative: "informative"; readonly success: "success"; readonly warning: "warning"; readonly quiet: "quiet"; }; export type StatusIndicatorType = (typeof StatusIndicatorValues)[keyof typeof StatusIndicatorValues]; interface Props extends SpaceProps, TypographyProps, FlexboxProps { type?: StatusIndicatorType; } declare const StatusIndicator: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, Props>> & string; export default StatusIndicator;