import * as React from "react"; export interface Props { children: any; url: string; className?: string; external?: boolean; role?: string; underlined?: boolean; truncate?: boolean; inactive?: boolean; } declare const Link: React.FC; export default Link;