export interface CountryOption { code: string; name: string; flag: string; } interface CountrySelectProps { value?: string; countries?: CountryOption[]; label?: string; placeholder?: string; disabled?: boolean; size?: 'sm' | 'md' | 'lg'; class?: string; onchange?: (code: string) => void; } declare const CountrySelect: import("svelte").Component; type CountrySelect = ReturnType; export default CountrySelect;