import type { Db } from '../db'; import type { Server } from '../sdam/server'; import type { ClientSession } from '../sessions'; import type { Callback } from '../utils'; import { CommandOperation, CommandOperationOptions } from './command'; /** @public */ export declare type RemoveUserOptions = CommandOperationOptions; /** @internal */ export declare class RemoveUserOperation extends CommandOperation { options: RemoveUserOptions; username: string; constructor(db: Db, username: string, options: RemoveUserOptions); execute(server: Server, session: ClientSession | undefined, callback: Callback): void; } //# sourceMappingURL=remove_user.d.ts.map