import { URI, Uri } from './uri'; export declare namespace FileUri { /** * Creates a new file URI from the filesystem path argument. * @param fsPath the filesystem path. */ function create(_fsPath: string): URI; /** * Returns with the platform specific FS path that is represented by the URI argument. * * @param uri the file URI that has to be resolved to a platform specific FS path. */ function fsPath(uri: URI | string): string; function uriToFsPath(uri: Uri): string; function isEqualOrParent(base: Uri, parentCandidate: Uri): boolean; } //# sourceMappingURL=file-uri.d.ts.map