import type { FileHashReadModelSchema } from '../types.js'; import type { DatabaseClient } from '../../../providers/database/client.js'; export type ListResult = { items: T[]; hasMore?: boolean; total: number; }; export declare class FileHashesLocalReadRepository { #private; constructor(db: DatabaseClient); getByPath(filePath: string): Promise; getAllOutdated(fileType: string): Promise; } //# sourceMappingURL=file-hashes-local-read-repository.d.ts.map