import React from 'react';
import { BoxOwnProps } from './Box';
import type { Assign, ForwardRef } from './types';
export interface ButtonProps extends Assign<React.ComponentPropsWithRef<'button'>, BoxOwnProps> {
}
/**
 * Primitive button component with variants
 * @see https://theme-ui.com/components/button
 */
export declare const Button: ForwardRef<HTMLButtonElement, ButtonProps>;
