import { BlobStorageFileRefRecordReadType } from "./definitions"; export declare const getBlobStorageByProjectAndEntityId: (projectId: string, entityType: string, entityId: string) => Promise; export declare const getBlobStorageByProjectId: (projectId: string) => AsyncGenerator; export declare const getBlobStorageByProjectIdBeforeDate: (projectId: string, beforeDate: Date) => AsyncGenerator; export declare const getBlobStorageByProjectIdAndEntityIds: (projectId: string, entityType: "observation" | "trace" | "score", entityIds: string[]) => AsyncGenerator; export declare const getBlobStorageByProjectIdAndTraceIds: (projectId: string, traceIds: string[]) => AsyncGenerator; export declare const insertIntoS3RefsTableFromEventLog: (limit: number, offset: number) => Promise; export declare const getLastEventLogPrimaryKey: () => Promise<{ project_id: string; entity_type: string; entity_id: string; bucket_path: string; } | undefined>; export declare const findS3RefsByPrimaryKey: (primaryKey: { project_id: string; entity_type: string; entity_id: string; bucket_path: string; }) => Promise<{ id: string; project_id: string; entity_type: string; entity_id: string; event_id: string | null; bucket_name: string; bucket_path: string; is_deleted: number; created_at: string; updated_at: string; event_ts: string; }[]>; //# sourceMappingURL=blobStorageLog.d.ts.map