import React from 'react'; import { A11yProps } from '../_utils/interfaces'; import { ItineraryItemProps } from './internals/ItineraryItem'; import { ProximityProps } from './Proximity'; export declare type AddressProps = A11yProps & Omit & Readonly<{ label: string; subLabel?: string; href?: string | JSX.Element; proximity?: React.ReactElement; highlighted?: boolean; }>; export declare const Address: ({ prevLine, nextLine, label, subLabel, time, bullet, href, proximity, highlighted, ...props }: AddressProps) => JSX.Element;