import { FileEntry } from '../types/submit.types.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 * @param actualInputDir - The property directory to scan * @param propertyDirName - The name of the property directory * @returns Scan results with file entries and metadata */ export declare function scanSinglePropertyDirectory(actualInputDir: string, propertyDirName: string): Promise; //# sourceMappingURL=single-property-file-scanner.d.ts.map