import type { FsDirEntry } from "../core/path-provider-types.js"; import type { PathPickMode, SuggestPathsResult } from "../core/path-suggest.js"; export type { PathPickMode, PathSuggestion, SuggestPathsResult } from "../core/path-suggest.js"; export { parsePathQuery, suggestParentHint } from "../core/path-suggest.js"; export declare function suggestPaths(options: Readonly<{ workspaceAbs: string; input: string; mode: PathPickMode; max: number; showHidden?: boolean; listDir: (absDir: string) => Promise; maxDepth?: number; gitignore?: "blocking" | "nonBlocking"; }>): Promise; export declare function resolveUserPath(workspaceAbs: string, input: string): string;