import type { ContactNode } from '@prezly/slate-types'; import React from 'react'; import type { RenderElementProps } from 'slate-react'; interface Props extends RenderElementProps { element: ContactNode; } export declare function InlineContactElement(props: Props): React.JSX.Element; export {};