import { type SvEditorProps } from './editor-contract'; /** User-facing strings for the color popover (localizable via `messages`). */ type ColorMessages = { dialog: string; picker: string; hex: string; }; type Props = SvEditorProps & { value?: string; onChange?: (hex: string) => void; /** Preset swatches. */ palette?: string[]; autoOpen?: boolean; /** Override the built-in popover strings. */ messages?: Partial; /** Stretch to the container width (otherwise hugs its content). */ block?: boolean; }; declare const SvColorInput: import("svelte").Component; type SvColorInput = ReturnType; export default SvColorInput;