/// /** @jsx jsx */ import { jsx } from '@emotion/react'; declare const Button: import("react").ForwardRefExoticComponent & { loading?: boolean | undefined; disabled?: boolean | undefined; inverted?: boolean | undefined; animated?: boolean | undefined; } & import("react").RefAttributes>; export declare function ConfirmButton({ children, onClick, confirmMessage, ...props }: ConfirmButtonProps): jsx.JSX.Element; export declare type ButtonProps = React.ButtonHTMLAttributes & { loading?: boolean; disabled?: boolean; inverted?: boolean; animated?: boolean; }; export declare type ConfirmButtonProps = ButtonProps & { confirmMessage?: string | React.ReactElement; }; export default Button; export declare const buttonCx: string; export declare const buttonInvertedCx: string;