import React from 'react'; /** An address suitable for use in [[`AddressDisplay`]]. */ export interface AddressDisplayAddress { line1: string | undefined | null; line2?: string | undefined | null; city: string | undefined | null; state: string | undefined | null; postalCode: string | undefined | null; } export interface AddressDisplayProps { address: AddressDisplayAddress | undefined | null; } /** A component that displays an address. */ export declare function AddressDisplay({ address, }: AddressDisplayProps): React.ReactElement | null;