export interface GenTeaserAddressProps {
    /** A string or html formatted string of the address */
    address?: string;
    /** A link to directions to the address */
    directionLink?: string;
    /** Any details related to the phone number */
    details?: string;
}
/**
 * Address
 */
declare const GenTeaserAddress: (props: GenTeaserAddressProps) => any;
export default GenTeaserAddress;
