/****************************************************************** * Copyright (C) 2021 LvChengbin * * File: Link/index.tsx * Author: LvChengbin * Time: 07/03/2021 * Description: ******************************************************************/ export interface LinkProps { href: string; title?: string; text?: string; } export default function Link(props: LinkProps): JSX.Element;