import { CustomerAddressGraphql } from '@evershop/evershop/types/customerAddress'; import React from 'react'; interface IndexProps { address?: CustomerAddressGraphql; areaId?: string; fieldNamePrefix?: string; } export default function Index({ address, areaId, fieldNamePrefix }: IndexProps): React.JSX.Element; export {};