import type { LinkState } from './src/interface'; import type { VmType, VmTarget, VmIcon, HandleEvent } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Link from "./src/link"; export declare const VLink: Install, VmType | null>; readonly href: BasicType, string | null>; readonly size: BasicType, string | number | null>; readonly state: BasicType, LinkState | null>; readonly disabled: BasicType; readonly target: BasicType, VmTarget | null>; readonly color: BasicType, string | null>; readonly hoverColor: BasicType, string | null>; readonly noCopy: BasicType; readonly noLink: BasicType; readonly beforeIcon: BasicType, null>; readonly afterIcon: BasicType, null>; readonly onClick: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, VmType | null>; readonly href: BasicType, string | null>; readonly size: BasicType, string | number | null>; readonly state: BasicType, LinkState | null>; readonly disabled: BasicType; readonly target: BasicType, VmTarget | null>; readonly color: BasicType, string | null>; readonly hoverColor: BasicType, string | null>; readonly noCopy: BasicType; readonly noLink: BasicType; readonly beforeIcon: BasicType, null>; readonly afterIcon: BasicType, null>; readonly onClick: BasicType, null>; }>>, { readonly type: VmType; readonly color: string; readonly beforeIcon: VmIcon; readonly size: string | number; readonly href: string; readonly target: VmTarget; readonly disabled: boolean; readonly afterIcon: VmIcon; readonly onClick: HandleEvent; readonly hoverColor: string; readonly state: LinkState; readonly noCopy: boolean; readonly noLink: boolean; }>>; /** link 组件实例型 */ export type LinkInstance = InstanceType; export * from './src/interface'; export default VLink;