import type { ReactText } from 'react'; import type { WithAttributes, TestIdProp } from '../../types'; export type StatusProps = WithAttributes<'span', TestIdProp & { /** Determines the color to render the Badge as. This color is derived from the Theme. */ variant: 'success' | 'urgent' | 'warn' | 'pending' | 'info'; /** The content of the Badge, transformed to uppercase. */ children: ReactText; }>; export declare const StyledStatus: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, Pick & { afterContent: StatusProps["children"]; }>> & string; declare const _default: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { getTestIds: (testIdProp?: TestIdProp["testId"]) => import("../../types").TestIdsRecord; }; export default _default; //# sourceMappingURL=Status.d.ts.map