import { type SvEditorProps } from './editor-contract'; /** User-facing strings (localizable via `messages`). */ type CountryMessages = { search: string; noResults: string; }; type Props = SvEditorProps & { value?: string | null; onChange?: (code: string) => void; /** Show the dial code beside each country. */ showDial?: boolean; placeholder?: string; /** Override the built-in strings (search + empty-state). */ messages?: Partial; }; declare const SvCountryInput: import("svelte").Component; type SvCountryInput = ReturnType; export default SvCountryInput;