import type { WorkspaceDeleteObserver } from "@opengeni/db"; import type { Observability } from "@opengeni/observability"; /** * Retain exact workspace deletion timing and inventory without putting tenant * identifiers in metric labels. Observer failures never change deletion truth. */ export declare function workspaceDeleteObserver(observability: Observability | null | undefined, identity: { accountId: string; workspaceId: string; }): WorkspaceDeleteObserver | undefined;