export declare const tableName = "record"; export interface RecordTable { uri: string; cid: string; did: string; json: string; indexed_at: string; takedown_ref: string | null; } export type PartialDB = { [tableName]: RecordTable; };