import { type ReactElement } from "react"; import { type ColorIndicatorProps } from "../ColorIndicator/ColorIndicator"; export type ColorPickerOptionProps = { isSelected?: boolean; "data-e2e-test-id"?: string; } & Pick; export declare const ColorPickerOption: ({ color, isSelected, size, "data-e2e-test-id": dataE2eTestId, }: ColorPickerOptionProps) => ReactElement;