import { NodeViewProps } from '@tiptap/react'; import { FC } from 'react'; export interface CustomLinkAttrs { href: string; text: string; isTransfer: boolean; } declare const CustomLinkView: FC; export default CustomLinkView;