import * as React from "react"; declare function normalizeHexColor(value: string, fallback?: string): string; declare function getAlphaPercent(value: string): number; declare function withAlpha(value: string, alpha: number, includeAlpha: boolean): string; export type ColorPickerProps = Omit, "defaultValue" | "onChange"> & { value?: string; defaultValue?: string; onValueChange?: (value: string) => void; swatches?: string[]; showAlpha?: boolean; disabled?: boolean; label?: React.ReactNode; labels?: { color?: string; hex?: string; alpha?: string; }; }; declare function ColorPicker({ value, defaultValue, onValueChange, swatches, showAlpha, disabled, label, labels, className, ...props }: ColorPickerProps): React.JSX.Element; export { ColorPicker, getAlphaPercent, normalizeHexColor, withAlpha };