import { type FullAutoFill } from 'svelte/elements'; interface PropsInterface { label: string; name: string; placeholder?: string; autocomplete?: FullAutoFill; labelHidden?: boolean; required?: boolean; dialCode?: string; dialCodeList?: Array; type?: string; hasError?: boolean; describedBy?: string; } declare const AliasField: import("svelte").Component; type AliasField = ReturnType; export default AliasField;