/// <reference types="react" />
import type { StyleProps } from "../utils/StyleTypes";
export declare type ButtonProps = {
    primary?: boolean;
    href?: string;
    onClick?: () => void;
    children: React.ReactNode;
} & StyleProps;
export declare const Button: ({ children, primary, href, onClick, className, }: ButtonProps) => JSX.Element;
