import * as React from "react"; export interface LinkProps { children: React.ReactNode; css?: any; href: any; hoverFocusColor?: string; activeColor?: string; inline?: boolean; [key: string]: any; } declare const Link: ({ children, css, hoverFocusColor, activeColor, inline, ...props }: LinkProps) => JSX.Element; export default Link;