/** * A client for interfacing with the SAS9 REST API * */ export declare class SAS9ApiClient { private serverUrl; constructor(serverUrl: string); /** * returns on object containing the server URL */ getConfig(): { serverUrl: string; }; /** * Updates serverurl which is not null * @param serverUrl - the URL of the server. */ setConfig(serverUrl: string): void; /** * Executes code on a SAS9 server. * @param linesOfCode - an array of lines of code to execute * @param serverName - the server to execute the code on * @param repositoryName - the repository to execute the code on */ executeScript(linesOfCode: string[], serverName: string, repositoryName: string): Promise; }