import React from "react"; import { PrimitiveBaseProps, PrimitiveWithSizing, PrimitiveWithChildrenProps } from "../helpers/types"; interface ButtonProps extends React.ButtonHTMLAttributes, PrimitiveBaseProps, PrimitiveWithSizing, PrimitiveWithChildrenProps { } export declare const Button: (props: ButtonProps) => JSX.Element; export {};