import React, { FC } from 'react'; import { Literal } from '@remirror/core'; type LinkHandler = FC<{ href: string; target?: string | null; children: React.ReactElement; }>; export declare const createLinkHandler: (overwriteAttrs?: Record) => LinkHandler; export {};