export declare class AnalyzeCodeCommand { /** * A function that takes in a string and returns a response from create chat * completion api call. * @param code Code to be evaluated. * @returns A result string from create chat completion. A list of suggestions to improve the code. */ static analyzeCode(code: string): Promise; }