export declare const ContactsAPI: { getPermissionsList: ({ parentId, ...params }: { [x: string]: any; parentId: any; }) => Promise<{ items: any; next: any; }>; patchPermissions: ({ changes, id }: { changes: any; id: any; }) => Promise; getList: (params: any) => Promise<{ items: any; next: any; }>; get: ({ itemId: id }: { itemId: any; }) => Promise; add: ({ itemInstance }: { itemInstance: any; }) => Promise; update: ({ itemInstance }: { itemInstance: any; }) => Promise; delete: ({ id }: { id: any; }) => Promise; getLookup: (params: any) => Promise<{ items: any; next: any; }>; };