import { BoxProps } from "@specimen/foundation"; import { ReactNode } from "react"; export interface Props extends BoxProps { children?: ReactNode; color?: string; } declare const Chip: ({ children, color, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Chip;