import { type ListOption } from './list-option'; import { type SvEditorProps } from './editor-contract'; type Props = SvEditorProps & { value?: string; onChange?: (value: string) => void; /** Suggestions - strings or {value,label} (label is shown, value inserted). */ suggestions?: ReadonlyArray; minChars?: number; placeholder?: string; /** Show a bottom drag grip so the user can resize the open suggestion panel's * height (hidden when the panel flips upward, where there is no room to grow). */ resizable?: boolean; }; declare const SvAutoComplete: import("svelte").Component; type SvAutoComplete = ReturnType; export default SvAutoComplete;