import { default as React } from 'react';
export interface RemovableItemProps extends React.PropsWithChildren {
    /** The callback that is being called, when the item was clicked. */
    onRemoveClick?: () => void;
}
export declare const RemovableItem: React.FC<RemovableItemProps>;
