export declare const tableName = "actor"; export interface ActorTable { did: string; handle: string | null; indexed_at: string; takedown_ref: string | null; upstream_status: string | null; } export type PartialDB = { [tableName]: ActorTable; };