import React, { FC } from 'react'; import { ContentState } from 'draft-js'; interface LinkProps { entityKey: string; contentState: ContentState; children: React.ReactNode; } declare const Link: FC; export default Link;