import { EventHandler } from '../../../types/event-handler.js'; import { RGBA } from '../../../types/rgba.js'; export type TextboxColorProps = { propagateEscapeKeyDown?: boolean; disabled?: boolean; hexColor: string; hexColorPlaceholder?: string; fullWidth?: boolean; onHexColorInput?: EventHandler.onInput; onHexColorKeyDown?: EventHandler.onKeyDown; onHexColorValueInput?: EventHandler.onValueChange; onOpacityInput?: EventHandler.onInput; onOpacityKeyDown?: EventHandler.onKeyDown; onOpacityNumericValueInput?: EventHandler.onValueChange; onOpacityValueInput?: EventHandler.onValueChange; onRgbaColorValueInput?: EventHandler.onValueChange; opacity: string; revertOnEscapeKeyDown?: boolean; }; export declare const TextboxColor: import("preact").FunctionalComponent, "ref"> & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=textbox-color.d.ts.map