export interface ColorSwatchButtonClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the active check icon. */ activeIcon: string; /** Styles applied to the root element when no color is set. */ colorNotSet: string; } export type ColorSwatchButtonClassKey = keyof ColorSwatchButtonClasses; export declare const colorSwatchButtonClasses: ColorSwatchButtonClasses;