import { default as React } from 'react'; import { ID } from '@zeniai/client-epic-state'; type Props = { id: ID; checked?: boolean; disabled?: boolean; label?: string; showInfoIcon?: boolean; style?: React.CSSProperties; tooltipText?: string; onClick: (id: ID, checked: boolean) => void; }; declare const _default: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>; export default _default;