import { ViewStyle } from 'react-native';
import { ColorFormats } from 'tinycolor2';
interface HoloColorPickerProps {
    defaultColor: string;
    oldColor?: string;
    onColorChange: (color: ColorFormats.HSV) => void;
    style?: ViewStyle;
}
export declare function HoloColorPicker({ defaultColor, oldColor, onColorChange, style, }: HoloColorPickerProps): import("react/jsx-runtime").JSX.Element;
export {};
