export declare const tableName = "label"; export interface Label { src: string; uri: string; cid: string; val: string; neg: boolean; cts: string; exp: string | null; } export type PartialDB = { [tableName]: Label; }; //# sourceMappingURL=label.d.ts.map