import { type MixinFactory } from './mixin.ts'; import type { ElementProps } from '../jsx.ts'; import type { NavigationOptions } from '../navigation.ts'; type LinkCurrentProps = ElementProps & { disabled?: boolean; role?: string; tabIndex?: number; tabindex?: number; type?: string; contentEditable?: boolean | string; contenteditable?: boolean | string; 'aria-disabled'?: boolean | 'true' | 'false'; }; /** * Adds client-side navigation behavior to anchor-like elements. */ export declare const link: MixinFactory; export {};