import { tagColors } from '../../const'; import { ComponentProps } from 'react'; type Props = { color?: keyof typeof tagColors; capitalise?: boolean; children: string; } & ComponentProps<'strong'>; export default function Tag({ capitalise, color, children, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};