/** * @export * @class Link */ export declare class Link { /** * webpage target URL (required) * @type {string} * @memberof Link */ href?: string; /** * Short description of the linked page * @type {string} * @memberof Link */ title?: string; constructor(obj?: Partial); } export default Link;