/**
 * Platform
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { ApiV1PaymentChargePost200Response, ApiV1PaymentChargePostRequest } from '../models/index';
import * as runtime from '../runtime';
export interface ApiV1PaymentChargePostOperationRequest {
    authorization?: string;
    apiV1PaymentChargePostRequest?: ApiV1PaymentChargePostRequest;
}
/**
 *
 */
export declare class PaymentChargeApi extends runtime.BaseAPI {
    /**
     * 测试环境的baseUrl为:https://open-test.chainopera.ai/payment 生产环境的baseUrl为:https://chainopera.ai/payment
     * charge
     */
    apiV1PaymentChargePostRaw(requestParameters: ApiV1PaymentChargePostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiV1PaymentChargePost200Response>>;
    /**
     * 测试环境的baseUrl为:https://open-test.chainopera.ai/payment 生产环境的baseUrl为:https://chainopera.ai/payment
     * charge
     */
    apiV1PaymentChargePost(requestParameters?: ApiV1PaymentChargePostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiV1PaymentChargePost200Response>;
}
