import type {ColorVariant, LinkTarget} from '../..' // Props export interface Props { href?: string linkClass?: Array | Record | string active?: boolean disabled?: boolean rel?: string target?: LinkTarget variant?: ColorVariant } // Emits export interface Emits { (e: 'click', value: MouseEvent): void } // Other