import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFocusableProps } from '../../../Behaviors/Focusable'; /** * Represents the `IColor-areaElementProps` interface. * * @public */ export interface IColorAreaElementProps extends IDisableableProps, IFocusableProps { color: string; } //# sourceMappingURL=IColorAreaElementProps.d.ts.map