import { AnchorLinkProps, AnchorProps } from "./types.js"; import { Anchor } from "./anchor.js"; import { AnchorLink } from "./anchor-link.js"; //#region src/anchor/index.d.ts type IAnchor = typeof Anchor & { Link: typeof AnchorLink; }; declare const DefaultAnchor: IAnchor; //#endregion export { DefaultAnchor }; //# sourceMappingURL=index.d.ts.map