import { ButtonHTMLAttributes, ReactNode, Ref } from "react";
import { ButtonProps } from "./Button";
import { SystemColorNames } from "./system/types";
export declare type ButtonOutlineProps = {
children: ReactNode;
tone?: SystemColorNames;
ref?: Ref;
} & ButtonHTMLAttributes & Pick;
export declare const ButtonOutline: import("react").FunctionComponent;