/** * Converts a file path to a proper file URI for cross-platform compatibility * @param p - The file path to convert * @returns A properly formatted file URI */ export declare function toFileUri(p: string): string; /** * Converts a file URI back to a file path for cross-platform compatibility * @param uri - The file URI to convert * @returns A properly formatted file path */ export declare function fileUriToPath(uri: string): string;