import React from 'react'; import { Theme } from '@emotion/react'; export declare const getLinkStyles: (props: LinkProps, theme: Theme) => import("@emotion/utils").SerializedStyles; export type LinkProps = { id?: string; className?: string; hasUnderline?: boolean; isExternal?: boolean; openInNewTab?: boolean; to?: any; children?: React.ReactNode; cssStyle?: any; styles?: { root: React.CSSProperties; }; text?: string; onClick?: () => void; onKeyDown?: (e: React.KeyboardEvent) => void; onKeyPress?: (e: React.KeyboardEvent) => void; }; declare const Link: React.FC; export default Link;