export declare const getTransparentBgImage: (isDarkMode: boolean) => string; export declare const TRANSPARENT_BG_IMAGE = "url(\"data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4%200H0V4H4V0Z%22%20fill%3D%22%23D9D9D9%22/%3E%3Cpath%20d%3D%22M8%204H4V8H8V4Z%22%20fill%3D%22%23D9D9D9%22/%3E%3C/svg%3E\")"; /** @deprecated Use TRANSPARENT_BG_IMAGE with inline style instead */ export declare const TRANSPARENT_PATTERN = ""; export declare const DEFAULT_PRESET_COLORS: string[]; type InputColorProps = Omit, "onChange" | "value"> & { value?: string; onChange: (value: string) => void; className?: string; defaultValue?: string; transparent?: boolean; presetColors?: string[]; }; export declare const InputColor: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};