import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface ItemslineProperties {
    items: string[];
    removeItem: (item: string) => void;
    theme?: Theme;
    level?: number;
    left?: boolean;
    style?: React.CSSProperties;
    className?: string;
}
/**
 * Renders an icon and a descriptive text.
 *
 * @param properties
 */
declare const Itemsline: React.FC<ItemslineProperties>;
export default Itemsline;
