import React from 'react'; import type { COLOR_FORMAT } from './utils.js'; import { Style } from 'inlines'; export type ColorModalProps = { children: React.ReactNode; colorFormat?: COLOR_FORMAT; value?: string; onChange: (value: string) => void; placement?: 'bottom-start' | 'bottom-end'; setColorFormat?: (colorFormat: COLOR_FORMAT) => void; setOpen: (open: boolean) => void; }; type ColorInputProps = { value?: string; onChange: (value: string) => void; format?: 'RGB' | 'HEX' | 'HSL'; error?: boolean; disabled?: boolean; placeholder?: string; style?: Style; label?: string; description?: string; errorMessage?: string; }; export declare const ColorInput: ({ value, label, description, errorMessage, onChange, format, error, disabled, placeholder, style, }: ColorInputProps) => import("react/jsx-runtime").JSX.Element; export {};