import { FunctionComponent } from 'react'; interface LinkProps { url: string; label?: string; } /** * `Link` displays a clickable link when supported by the terminal. */ declare const Link: FunctionComponent; export { Link };