/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ export interface ShellPathSuggestion { readonly label: string; readonly value: string; readonly isDirectory: boolean; } export interface PathTokenExtractionResult { readonly token: string; readonly tokenStart: number; readonly tokenEnd: number; readonly isPathLike: boolean; } export declare function extractPathToken(line: string, cursorCol: number): PathTokenExtractionResult; export declare function getPathSuggestions(partialPath: string, cwd: string): Promise;