import * as React from "react"; export interface IButtonProps extends React.ButtonHTMLAttributes { /** (string) An icon to show on the left of the buttons content */ leftIcon?: string; /** (string) An icon to show on the right of the buttons content */ rightIcon?: string; /** (boolean) Wether or not the button should have rounded edges */ rounded?: boolean; /** (boolean) If true, disables actions and puts button into a 'pending' state */ pending?: boolean; } export interface IButton { focus: () => void; blur: () => void; } export declare const Button: React.ForwardRefExoticComponent>;