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