/** * CheckboxPill * * A Checkbox in Pill form */ import { BlockProps, ValueProps } from '../../core/types'; import './CheckboxPill.scss'; export type CheckboxPillProps = BlockProps & ValueProps & { onChange?: (e: any) => void; value: boolean; }; export default function CheckboxPill(props: CheckboxPillProps): import("react/jsx-runtime").JSX.Element;