/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * @hidden */ export interface BreadcrumbLinkComputed { [key: string]: any; itemClasses: object; } /** * Represents the BreadcrumbLink component. */ declare const BreadcrumbLink: import('vue').DefineComponent; tabIndex: PropType; dir: PropType; disabled: PropType; text: PropType; svgIcon: PropType>; icon: PropType>; ariaCurrent: PropType; isLast: PropType; isFirst: PropType; onSelect: PropType<(event: any) => void>; }>, { linkRef: import('vue').Ref; }, {}, { itemClasses(): BreadcrumbLinkComputed['itemClasses']; }, { focus(): void; handleSelect(event: any): void; handleKeyDown(event: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "keydown")[], "select" | "keydown", import('vue').PublicProps, Readonly; tabIndex: PropType; dir: PropType; disabled: PropType; text: PropType; svgIcon: PropType>; icon: PropType>; ariaCurrent: PropType; isLast: PropType; isFirst: PropType; onSelect: PropType<(event: any) => void>; }>> & Readonly<{ onKeydown?: (...args: any[]) => any; onSelect?: (...args: any[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { BreadcrumbLink };