/** * Execute the following sh program. */ export declare function execShellScript(body: string, cmd?: string): Promise; /** * Get documentation for the given word by using help and man. */ export declare function getShellDocumentationWithoutCache({ word, }: { word: string; }): Promise; export declare function formatManOutput(manOutput: string): string; /** * Only works for one-parameter (serializable) functions. */ export declare function memorize(func: T): T; export declare const getShellDocumentation: typeof getShellDocumentationWithoutCache;