export declare class LodAddress { /** * The unique uri of the address. */ uri: string; /** * The name of the address. */ name: string; /** * Show a map or a link to a map. */ mode: 'link' | 'map' | 'none'; /** * Show a link to JSON-LD for SEO. */ includeLd: boolean; data: any; el: HTMLElement; componentWillLoad(): void; componentDidLoad(): void; fetchAddress(newUri: string): Promise; get street(): string; get city(): string; get postcode(): string; get fullAddress(): string; get googleMapsLink(): string; render(): any; }