export type { Platform, ExecOptions } from './platform'; export declare const isProcessAlive: (pid: number) => boolean; export declare const killProcess: (pid: number) => Promise<{ forceKilled: boolean; }>; export declare const findProcessesByPattern: (pattern: string) => number[]; export declare const execSilent: (cmd: string, opts?: import("./platform").ExecOptions) => string; export declare const isCommandAvailable: (cmd: string) => boolean; export declare const openFile: (filePath: string) => void; export declare const startDocker: () => void; export declare const getDiskSpaceAvailable: () => number | null; export { createDirectoryTar } from './tar';