import { Logger } from './types'; export interface IShellOptions { silent: boolean; async: boolean; } export declare function whisperShell(command: string, options?: IShellOptions, logger?: Logger, projectDir?: string): Promise; export declare function executeCppCommand(command: string, logger?: Logger, withCuda?: boolean): Promise;