export declare function openFolderName(): "Show in Finder" | "Show in File Explorer" | null; export declare function openConsoleName(): "Open in Terminal" | "Open in Cmd" | null; export declare function openFolderAsync(dir: string): Promise<void | import("@expo/spawn-async").SpawnResult>; export declare function openConsoleAsync(dir: string): Promise<void>; export declare function openFileInEditorAsync(path: string): Promise<import("@expo/spawn-async").SpawnResult>; export declare function openProjectInEditorAsync(dir: string): Promise<import("@expo/spawn-async").SpawnResult>;