import { ColorType, StatusType } from '../common/type'; type State = 'default' | 'disabled'; interface ColorStyleByState { borderColor: string; containerColor: string; iconColor: string; } export type CheckBoxColorStyleProps = Record>; declare const checkBoxColorStyle: (colorType: ColorType) => CheckBoxColorStyleProps; export default checkBoxColorStyle; //# sourceMappingURL=check-box.d.ts.map