import { Props as ChipProps } from "./Chip"; declare const statuses: { report: { text: string; color: string; }; live: { text: string; color: string; }; draft: { text: string; color: string; }; }; interface Props extends ChipProps { status?: keyof typeof statuses; } declare const StatusTag: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default StatusTag;