interface FormPhoneInputProps { id?: string; name?: string; label?: string; value?: string; rawValue?: string; countryCode?: string; helperText?: string; errorMessage?: string; disabled?: boolean; size?: 'sm' | 'md' | 'lg'; bindData?: boolean; class?: string; onchange?: (masked: string, raw: string) => void; } declare const FormPhoneInput: import("svelte").Component; type FormPhoneInput = ReturnType; export default FormPhoneInput;