/** * Pill * * A Pill element */ import { MouseEvent } from 'react'; import { BlockProps } from '../../core/types'; import './Pill.scss'; export type PillProps = BlockProps & { onClick?: (e: MouseEvent) => any; }; export default function Pill(props: PillProps): import("react/jsx-runtime").JSX.Element;