import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core"; import Choice from "../components/choice"; export type Checked = boolean | null | undefined; export type ChoiceCoreProps = AriaProps & { /** Whether this component is checked */ checked: Checked; /** Whether this component is disabled */ disabled: boolean; /** Whether this component should show an error state */ error: boolean; /** Name for the checkbox or radio button group */ groupName?: string; /** Unique identifier attached to the HTML input element. If used, need to * guarantee that the ID is unique within everything rendered on a page. * Used to match