import React from "react"; import { SingleAutocompleteChoiceType, SingleAutocompleteSelectFieldLabels } from "../SingleAutocompleteSelectField"; import { ChangeEvent, FormErrors } from "../types/utils"; export interface AddressInput { city: string; cityArea?: string; companyName?: string; country: string; countryArea?: string; firstName: string; lastName: string; phone: string; postalCode: string; streetAddress1: string; streetAddress2?: string; } export declare type EditAddressLabelKeys = "firstName" | "lastName" | "companyName" | "phoneNumber" | "streetAddress1" | "streetAddress2" | "city" | "postalCode" | "country" | "countryArea"; export declare type EditAddressLabels = Record; export interface EditAddressProps { countries: SingleAutocompleteChoiceType[]; countryPickerDisplayValue: string; countryPickerLabels: Pick; data: AddressInput; disabled?: boolean; errors: FormErrors; labels: EditAddressLabels; onChange: (event: ChangeEvent) => void; onCountryChange: (event: ChangeEvent) => void; } declare const EditAddress: React.FC; export default EditAddress;