import { type SvEditorProps } from './editor-contract'; /** User-facing strings (localizable via `messages`). */ type TagsMessages = { add: string; remove: string; }; type Props = SvEditorProps & { value?: string[]; onChange?: (tags: string[]) => void; placeholder?: string; /** Reject duplicate tags. Default true. */ unique?: boolean; max?: number; /** Override the built-in strings (draft + remove aria-labels). */ messages?: Partial; }; declare const SvTagsInput: import("svelte").Component; type SvTagsInput = ReturnType; export default SvTagsInput;