import React from 'react'; import { ClickableProps } from '../Clickable'; import './ControlLink.scss'; export type ControlLinkProps = ClickableProps & { disabled?: boolean; underlined?: boolean; }; export declare const ControlLink: React.FC;