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