import * as react_jsx_runtime from 'react/jsx-runtime'; interface SettingsColorPickerProps { label: string; value: string; onChange: (value: string) => void; defaultValue?: string; tooltip?: string; className?: string; } declare function SettingsColorPicker({ label, value, onChange, defaultValue, tooltip, className, }: SettingsColorPickerProps): react_jsx_runtime.JSX.Element; export { SettingsColorPicker };