export type ModerationStatus = 'active' | 'ejected'; /** * The single definition of "this account is ejected", read off an * already-fetched `moderationUsers/{id}` document. A missing document reads * 'active'. Fetching is the caller's job — this package holds no Firestore handle. */ export declare function readModerationStatus(data: unknown): ModerationStatus;