declare function getByPath(obj: any, path: any): any; declare function setByPath(obj: any, path: any, val: any): any; declare function recomputeTotals(data: any): any; declare function parseNum(str: any): number; declare function applyEdit(data: any, path: any, type: any, rawText: any): any; declare function addItem(data: any): any; declare function removeItem(data: any, idx: any): any; declare function moveItem(data: any, idx: any, dir: any): any; export declare const PBModel: { clone: (o: any) => any; getByPath: typeof getByPath; setByPath: typeof setByPath; recomputeTotals: typeof recomputeTotals; parseNum: typeof parseNum; applyEdit: typeof applyEdit; addItem: typeof addItem; removeItem: typeof removeItem; moveItem: typeof moveItem; }; export {};