export declare const ServicesAPI: { getList: ({ rootId, ...rest }: { [x: string]: any; rootId: any; }) => Promise<{ items: any; next: any; }>; get: ({ itemId: id }: { itemId: any; }) => Promise; add: ({ itemInstance, rootId, catalogId }: { itemInstance: any; rootId: any; catalogId: any; }) => Promise; update: ({ itemInstance, itemId: id, rootId, catalogId, }: { itemInstance: any; itemId: any; rootId: any; catalogId: any; }) => Promise; patch: ({ changes, id }: { changes: any; id: any; }) => Promise; delete: ({ id }: { id: any; }) => Promise; getLookup: (params: any) => Promise<{ items: any; next: any; }>; };