import { ListItem } from '../modules';
export declare class ItemsCollection {
    private items;
    constructor(items: ListItem[] | string[]);
    length(): number;
    getListItems(): (ListItem | string)[];
}
