import React, { FC } from 'react'; import { box } from '../../utility/box'; export type PropsType = typeof box.props & { title?: string; href?: string; }; declare const CorporateLink: FC>; export default CorporateLink;