import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; /** * Represents the `IColorSwatchElementProps` interface. * * @public */ export interface IColorSwatchElementProps extends IValueableProps, ISizeableProps { name: string | null; value: string | null; hasBackground: boolean; } //# sourceMappingURL=IColorSwatchElementProps.d.ts.map