import { AuthenticationManagementBase } from './AuthenticationManagementBase'; import type { SanitizedUser, DataIdentityChange, IdentityChangeServiceOptions } from '../types'; import type { Application, Params } from '@feathersjs/feathers'; export declare class IdentityChangeService extends AuthenticationManagementBase { constructor(app: Application, options?: Partial); _create(data: DataIdentityChange, params?: Params): Promise; }