export declare function sh(command: string): string;
export declare function asyncSh(command: string): Promise<string>;
export declare function escapeForShell(text: string): string;
