import { ExtractPublicPropTypes } from "vue";

//#region ../../packages/components/anchor/src/anchor-link.d.ts
interface AnchorLinkProps {
  /**
   * @description the text content of the anchor link
   */
  title?: string;
  /**
   * @description The address of the anchor link
   */
  href?: string;
}
//#endregion
export { AnchorLinkProps };