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