///
import { DraggableProps } from './Draggable';
export interface FilterDraggableProps extends DraggableProps {
/**
* The items that should appear on the list
*/
filterItems: Array;
/**
* The items that were selected by the user
*/
selectedItems: Set;
/**
* Called when items are added or removed in the chosenItems prop
*/
onFilterUpdate: (key: keyof T, filter: Set) => void;
/**
* To format each item of the filter list
*/
formatter?: (value: string) => string;
}
export declare function FilterDraggable(props: FilterDraggableProps): JSX.Element;