import React from 'react'; import './address-list-item.scss'; export interface AddressListItemProps { name?: string; phone?: string; address?: string; tag?: string; selected?: boolean; onClick?: (e: any) => void; onRemove?: () => void; onEdit?: () => void; } declare const AddressListItem: React.FC; export default AddressListItem;