import React from "react";
import { LinkProps as CarbonLinkProps } from "@carbon/react";
export type LinkProps = Omit<CarbonLinkProps<"a">, "ref">;
export declare const Link: ({ className, children, href, onClick, ...otherProps }: LinkProps) => React.JSX.Element;
export default Link;
