import { Identity, IdentityPublicKey } from '@dashevo/wasm-dpp'; import { Platform } from '../../Platform'; /** * Update platform identities * * @param {Platform} this - bound instance class * @param {Identity} identity - identity to update * @param {{add: IdentityPublicKey[]; disable: IdentityPublicKey[]}} publicKeys - public keys to add * @param {Object} privateKeys - public keys to add * * @returns {boolean} */ export declare function update(this: Platform, identity: Identity, publicKeys: { add?: IdentityPublicKey[]; disable?: IdentityPublicKey[]; }, privateKeys: { string: any; any: any; }): Promise; export default update;