import { ColorType, PurposeType } from './common/type'; export interface SingleButtonColorStyleProps { defaultContainerColor: string; disabledContainerColor: string; disabledTextColor: string; focusedContainerColor: string; hoverContainerColor: string; textColor: string; } export interface SingleButtonColorStyleParams { colorType: ColorType; purpose: PurposeType; } declare const singleButtonColorStyle: ({ colorType, purpose }: SingleButtonColorStyleParams) => SingleButtonColorStyleProps; export default singleButtonColorStyle; //# sourceMappingURL=single-button.d.ts.map