export type CheckboxShape = "square" | "round"; export type CheckboxThemeVars = { checkboxSize?: string; checkboxFontSize?: string; checkboxBorderColor?: string; checkboxTransitionDuration?: string; checkboxGap?: string; checkboxLabelMargin?: string; checkboxLabelColor?: string; checkboxLabelLineHeight?: string; checkboxDisabledLabelColor?: string; checkboxIconFontSize?: string; checkboxCheckedIconColor?: string; checkboxCheckedIconBorderColor?: string; checkboxCheckedIconBackgroundColor?: string; checkboxDisabledIconColor?: string; checkboxDisabledIconBorderColor?: string; checkboxDisabledIconBackgroundColor?: string; };