interface AddressFieldsProps { line1?: string; line2?: string; city?: string; state?: string; postal?: string; country?: string; class?: string; } declare const AddressFields: import("svelte").Component; type AddressFields = ReturnType; export default AddressFields;