import { InputHTMLAttributes, LabelHTMLAttributes } from 'react';
export type CheckedButtonElementProps = Omit, 'color' | 'defaultValue'>;
export type LabelElementProps = Omit, 'color'>;
export interface CheckedButtonProps extends CheckedButtonElementProps {
name: string;
defaultValue: boolean;
labels: string | [string, string];
}