import React from 'react'; import { LinkProps } from '../Link'; import { ModalLinkProps } from './types'; export declare const checkLink: (modalLink: Array | (LinkProps & { text: string; })) => (LinkProps & { text: string; })[]; export declare const ModalLink: React.FC;