export declare const getPlatform: () => Promise<"wsl1" | NodeJS.Platform>; export declare const isAccessible: (path: string, mode?: number) => Promise; export declare const isExecutable: (path: string) => Promise; export declare const isReadable: (path: string) => Promise; export declare const findExecutable: (paths: string[]) => Promise; export declare const isSnapBrowser: (executablePath: string) => Promise; export declare const findExecutableBinary: (binaries: string[]) => Promise; export declare const which: (command: string) => Promise; export declare const normalizeDarwinAppPath: (executablePath: string) => Promise;