export type CheckboxProps = {
  /** Input ID. */
  id?: string;
  /** Option label. */
  label: string;
  /** Value. */
  value?: string;
  /** Is the option disabled? */
  disabled?: boolean;
};
