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