import { EventEmitter, OnInit } from '@angular/core'; import { NavigationService } from '../../../services/navigation'; import { LinkMetadata } from './types'; import * as i0 from "@angular/core"; export declare class LinkComponent implements OnInit { /** * Link configuration object. * @type {LinkMetadata} * @property text - The link text. * @property color - The button color (Ionic color string). * @property link - The URL or route to navigate to. * @property type - The navigation type ('internal', 'browse', 'tab'). * @property token - Optional token for event identification. * @property size - The button size (optional). */ props: LinkMetadata; onClick: EventEmitter; service: NavigationService; constructor(); ngOnInit(): void; onClickHandler(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }