import type { IdentityDatabase } from './db'; /** * Reads account/pod ownership data from the CSS identity facts. * Quota values live in identity_usage and are managed by UsageRepository. */ export declare class AccountRepository { private readonly podLookupRepo; constructor(db: IdentityDatabase, kvTableName?: string); getPodInfo(podId: string): Promise<{ accountId: string; baseUrl?: string; } | undefined>; }