import { Generated } from 'kysely'; export declare const tableName = "notification"; export interface Notification { id: Generated; did: string; recordUri: string; recordCid: string; author: string; reason: string; reasonSubject: string | null; sortAt: string; } export type PartialDB = { [tableName]: Notification; }; //# sourceMappingURL=notification.d.ts.map