/** * Hyper link component * * This component generates a link with icon to open in new tab * * @example * * */ export declare class HyperLinkComponent { /** * Receive the hyper link href */ href: string; /** * Receive the hyper link text */ text: string; /** * Receive the hyper link aria-label. * If not received, it will use text variable instead. */ ariaLabel: string; /** * @ignore */ constructor(); }