import { type MutationHint } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Removes the target from chatMembers, repairs owned chats, disables accounts and authSessions, and tombstones the users profile after administrator checks. * The audited cascade prevents a deleted identity from retaining authentication, channel ownership, or membership through a partial cleanup. */ export declare function userDelete(executor: DrizzleExecutor, input: { actorUserId: string; userId: string; }): Promise<{ hint: MutationHint; }>; //# sourceMappingURL=userDelete.d.ts.map