import type { DifyAccessor } from '../../accessor/dify.ts'; import type { IndexEntry } from '../../cache/index/config.ts'; import type { IndexCacheStore } from '../../cache/index/store.ts'; import { PathSpec } from '../../types.ts'; export interface ResolvedDifyPath { virtualKey: string; mountPrefix: string; isDir: boolean; entry: IndexEntry | null; } export declare function resolvePath(accessor: DifyAccessor, path: PathSpec | string, index?: IndexCacheStore): Promise; //# sourceMappingURL=path.d.ts.map