import { VueNode } from "../_util/type.js"; import { ComponentBaseProps } from "../config-provider/context.js"; import * as vue103 from "vue"; //#region src/anchor/AnchorLink.d.ts interface AnchorLinkBaseProps extends ComponentBaseProps { href: string; target?: string; title: VueNode; replace?: boolean; } interface AnchorLinkEmits { click: (e: MouseEvent, params: { title: any; href: any; }) => any; } interface AnchorLinkEmitsProps { onClick?: AnchorLinkEmits['click']; } interface AnchorLinkProps extends AnchorLinkBaseProps, AnchorLinkEmitsProps {} declare const AnchorLink: vue103.DefineSetupFnComponent; //#endregion export { AnchorLinkBaseProps, AnchorLinkEmits, AnchorLinkEmitsProps, AnchorLinkProps, AnchorLink as default };