export type TagProps = { tagKey?: string; value: string; flowing?: boolean; maxWidth?: string; }; export default function Tag({ tagKey, value, flowing, maxWidth }: TagProps): import("react/jsx-runtime").JSX.Element | null;