///
/**
* Standard remove button for a line of data being displayed. Has hard-coded styling
* Clients can keep it invisible until the row is highlighted using the className.
*/
import * as React from "react";
export interface Props {
/** Curry your onRemove if you want to add parameters to the call. */
onRemove: () => void;
className?: string;
}
export declare const RemoveIconButton: React.SFC;
export default RemoveIconButton;