import { FileEntry } from '../types/submit.types.js'; import { SchemaManifestService } from '../services/schema-manifest.service.js'; export interface SinglePropertyScanResult { allFiles: FileEntry[]; validFilesCount: number; descriptiveFilesCount: number; hasSeedFile: boolean; propertyCid: string; schemaCids: Set; } /** * Scans a single property directory and returns file information * Files are identified as datagroup root files if they have exactly "label" and "relationships" keys * @param actualInputDir - The property directory to scan * @param propertyDirName - The name of the property directory * @param schemaManifestService - Service for schema manifest operations * @returns Scan results with file entries and metadata */ export declare function scanSinglePropertyDirectoryV2(actualInputDir: string, propertyDirName: string, schemaManifestService: SchemaManifestService): Promise; //# sourceMappingURL=single-property-file-scanner-v2.d.ts.map