import { ThemeColorIndex } from "../../styles/theme.interface"; import { ReactElement } from "react"; export interface TagProps { children: ReactElement | string; color?: ThemeColorIndex; className?: string; active?: boolean; onClick?: (value: any) => void; [props: string]: any; } export declare const Tag: ({ color, children, className, active, onClick, ...props }: TagProps) => import("@emotion/react/jsx-runtime").JSX.Element;