import { JSX } from 'react/jsx-runtime'; import * as React from "react"; declare const TAG_COLORS: { default: string; secondary: string; accent: string; success: string; info: string; warning: string; danger: string; }; export type TagColor = keyof typeof TAG_COLORS; export interface TagProps { color?: TagColor; solid?: boolean; children: React.ReactNode; } export declare function Tag(props: TagProps): JSX.Element; export {}; //# sourceMappingURL=Tag.d.ts.map