import { DOMNode, HTMLReactParserOptions } from 'html-react-parser';
import React from 'react';
export interface ElementLinkProps extends React.HTMLAttributes<HTMLAnchorElement> {
    href: string;
    children?: React.ReactNode;
}
export declare const ElementLink: ({ href, children, ...props }: ElementLinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const elementLinkReplacer: (node: DOMNode, options?: HTMLReactParserOptions) => import("react/jsx-runtime").JSX.Element | DOMNode;
//# sourceMappingURL=element-link.d.ts.map