import type {BLinkProps} from '..' // Props export interface Props extends Omit { active?: boolean ariaCurrent?: string disabled?: boolean text?: string } // Emits export interface Emits { (e: 'click', value: MouseEvent): void } // Other