import type { DifyAccessor } from '../../accessor/dify.ts'; import type { IndexCacheStore } from '../../cache/index/store.ts'; import { PathSpec } from '../../types.ts'; export interface WalkOptions { includeRoot?: boolean; maxDepth?: number | null; stripPrefix?: boolean; ignoreMissing?: boolean; depth?: number; } export declare function walk(accessor: DifyAccessor, path: PathSpec, index?: IndexCacheStore, options?: WalkOptions): Promise; //# sourceMappingURL=walk.d.ts.map