import { GeneratedAlways } from 'kysely'; export declare const tableName = "repost"; export interface Repost { uri: string; cid: string; creator: string; subject: string; subjectCid: string; via: string | null; viaCid: string | null; createdAt: string; indexedAt: string; sortAt: GeneratedAlways; } export type PartialDB = { [tableName]: Repost; }; //# sourceMappingURL=repost.d.ts.map