import type { ButtonHTMLAttributes } from "react"; /** * The props for the unstyled button are just all the normal button html * attributes without the `type` since this component forces the `type="button"` * value. */ export declare type UnstyledButtonProps = Omit, "type">; /** * The unstyled button is a really simple button element that resets the default * browser button styles into a clear clickable element. */ export declare const UnstyledButton: import("react").ForwardRefExoticComponent>;