import React from 'react'; import { ActionSet } from '../../typings'; export declare const SortableItem: React.ComponentClass<{ action: any; actionSetId: any; } & import("react-sortable-hoc").SortableElementProps, any>; export declare const SortableList: React.ComponentClass<{ items: any; actionSetId: any; } & import("react-sortable-hoc").SortableContainerProps, any>; interface ActionListProps { actionSet: ActionSet; } declare const ActionList: React.FC; export { ActionList };