declare class ClientOptions {
    constructor();
    private _baseUrl;
    /**
     *
     * @throws QqAwsServiceStudioClientClientError  When the baseurl is not set
     */
    get baseUrl(): string;
    setBaseUrl(value: string): ClientOptions;
    private _apiKey;
    /**
     * @returns The apiKey
     * @throws QqAwsServiceStudioClientClientError  When the apiKey is not set
     */
    get apiKey(): string;
    /**
     *
     * @param value The API key
     * @returns
     */
    setApiKey(value: string): ClientOptions;
}

export { ClientOptions };
