import { Props as ChipProps } from "./Chip"; interface Props extends Omit { children: string; handleClear?: () => void; } declare const Tag: ({ children, handleClear, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Tag;