///
export declare namespace Checkbox {
type Props = {
name?: string;
label?: React.ReactNode | string;
onClick?: (event: React.MouseEvent) => void;
onChange?: (event: React.ChangeEvent) => void;
color?: string;
disabled?: boolean;
checked?: boolean;
variant?: CheckboxVariant;
checkBoxColor?: string;
type?: 'onNormal' | 'onDropdown';
};
enum Variant {
default = "default",
line = "line"
}
type CheckboxVariant = keyof typeof Variant;
type CheckboxContainer = {
label?: string;
disabled?: boolean;
color: string;
};
}