// Component export.
export { default as Checkbox } from './Checkbox';
export { default as RadioButton } from './RadioButton';

// Type export.
export type {
  Props as CheckboxProps,
  Props as RadioButtonProps,
} from './CompoundButton.types';
