import React from 'react'; import { SortableElementProps } from 'react-sortable-hoc'; import { ActionSet } from '../../typings'; export interface ActionSetActionSetListItemProps extends SortableElementProps { onEdit: (item: ActionSet) => void; onDelete: (item: ActionSet) => void; onCheckBoxClick?: (item: ActionSet) => void; onCopy?: (item: ActionSet) => void; item: ActionSet; checked?: boolean; title: string; isEditing?: boolean; hideIcons?: boolean; } export declare function ActionSetListItem({ onEdit, onDelete, item, onCheckBoxClick, checked, title, isEditing, hideIcons, onCopy, }: ActionSetActionSetListItemProps): JSX.Element; export declare namespace ActionSetListItem { var displayName: string; } declare const SortableActionSetListItem: React.ComponentClass; export { SortableActionSetListItem };