import { Item, ItemsResult } from "../types/types";
export default class ItemsParser {
    static getItemsResult(exp: string): ItemsResult;
    static getExpItems(exp: string): Item[];
    static getTemplateItems(templateExp?: string): Item[];
    static calculateResultFromExpression(exp?: string): ItemsResult;
    private static getValueAndType;
    private static getSplitItems;
    private static getMembersFromName;
}
