import { TShirtSizes } from "@specimen/foundation"; interface Props { color: string; size: TShirtSizes; } declare const Dot: ({ color, size }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Dot;