import { Props as ChipProps } from "./Chip"; import { Mood } from "./moods"; interface Props extends ChipProps { mood?: Mood; children: string; } declare const ValidationChip: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default ValidationChip;