/**
 * Execute a command
 *
 * @param cmd Command to execute
 * @param silent (Optional) Set to true to output command output
 * @returns Returns the command output
 */
export declare function exec(cmd: string, silent?: boolean): Promise<unknown>;
