///
import { ActionButton, IButtonProps } from 'office-ui-fabric-react/lib-commonjs/Button';
export interface ButtonProps extends IButtonProps {
item: T;
itemClicked(t: T): any;
}
/**
* Action button with context on click
*/
export declare class GenericButton extends ActionButton {
constructor(props: ButtonProps);
render(): JSX.Element;
private readonly handleClick;
}