import type { FunctionComponent } from "react"; import type { LinkItemData } from './types.js'; import { type CmsContentLinkProps } from "./CmsContentLink.js"; export type CmsLinkProps = { href: LinkItemData; } & Omit; export declare const CmsLink: FunctionComponent; export default CmsLink;