import { EventEmitter, OnInit } from '@angular/core'; import { DownloadService } from '../../../services/download.service'; import { HrefMetadata } from './types'; import * as i0 from "@angular/core"; export declare class HrefComponent implements OnInit { private downloadService; /** * Link configuration object. * @type {HrefMetadata} * @property url - The URL to open. * @property text - The link text. * @property color - The link color (Ionic color string). * @property download - Whether to trigger a download (optional). * @property hoverable - Whether the link is hoverable (optional). * @property token - Optional token for event identification. */ props: HrefMetadata; onClick: EventEmitter; constructor(downloadService: DownloadService); ngOnInit(): void; getFileName(): string; onClickHandler(event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }