import { ColorType, StatusType } from '../common/type'; type State = 'default' | 'disabled'; interface ColorStyleByState { containerColor: string; innerCircleColor: string; } export type SwitchColorStyleProps = Record>; declare const switchColorStyle: (colorType: ColorType) => SwitchColorStyleProps; export default switchColorStyle; //# sourceMappingURL=switch.d.ts.map