import { FC } from 'react'; declare type DisplayMode = 'icon-button' | 'text-button'; declare type Variation = 'primary' | 'secondary' | 'tertiary' | 'inverted-tertiary' | 'danger' | 'danger-tertiary'; interface Props { displayMode?: DisplayMode; variant?: Variation; } export declare const RemoveButton: FC; export {};