import { AnchorHTMLAttributes, ReactNode, Ref } from "react";
import { ButtonLinkProps } from "./ButtonLink";
import { SystemColorNames } from "./system/types";
export declare type ButtonPrimaryLinkProps = {
children: ReactNode;
tone?: SystemColorNames;
ref?: Ref;
} & AnchorHTMLAttributes & Pick;
export declare const ButtonPrimaryLink: import("react").FunctionComponent;