import { JSX } from 'react'; export interface RemoveButtonProps extends React.ButtonHTMLAttributes { } /** Remove button is simply a button with attached an icon that highlight the functionality. */ export declare function RemoveButton({ children, className, ...rest }: RemoveButtonProps): JSX.Element; export declare namespace RemoveButton { var displayName: string; }