import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { TransactionChannel } from '../models'; export declare const TransactionChannelsApiAxiosParamCreator: (configuration?: Configuration) => { _delete: (transactionChannelId: string, options?: RawAxiosRequestConfig) => Promise; create: (transactionChannel: TransactionChannel, idempotencyKey?: string, options?: RawAxiosRequestConfig) => Promise; getAll: (detailsLevel?: GetAllDetailsLevelEnum, transactionChannelState?: GetAllTransactionChannelStateEnum, options?: RawAxiosRequestConfig) => Promise; getById: (transactionChannelId: string, detailsLevel?: GetByIdDetailsLevelEnum, options?: RawAxiosRequestConfig) => Promise; update: (transactionChannelId: string, transactionChannel: TransactionChannel, options?: RawAxiosRequestConfig) => Promise; }; export declare const TransactionChannelsApiFp: (configuration?: Configuration) => { _delete(transactionChannelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; create(transactionChannel: TransactionChannel, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; getAll(detailsLevel?: GetAllDetailsLevelEnum, transactionChannelState?: GetAllTransactionChannelStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; getById(transactionChannelId: string, detailsLevel?: GetByIdDetailsLevelEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; update(transactionChannelId: string, transactionChannel: TransactionChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; export declare const TransactionChannelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { _delete(transactionChannelId: string, options?: RawAxiosRequestConfig): AxiosPromise; create(transactionChannel: TransactionChannel, idempotencyKey?: string, options?: RawAxiosRequestConfig): AxiosPromise; getAll(detailsLevel?: GetAllDetailsLevelEnum, transactionChannelState?: GetAllTransactionChannelStateEnum, options?: RawAxiosRequestConfig): AxiosPromise>; getById(transactionChannelId: string, detailsLevel?: GetByIdDetailsLevelEnum, options?: RawAxiosRequestConfig): AxiosPromise; update(transactionChannelId: string, transactionChannel: TransactionChannel, options?: RawAxiosRequestConfig): AxiosPromise; }; export declare class TransactionChannelsApi extends BaseAPI { _delete(transactionChannelId: string, options?: RawAxiosRequestConfig): Promise>; create(transactionChannel: TransactionChannel, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise>; getAll(detailsLevel?: GetAllDetailsLevelEnum, transactionChannelState?: GetAllTransactionChannelStateEnum, options?: RawAxiosRequestConfig): Promise>; getById(transactionChannelId: string, detailsLevel?: GetByIdDetailsLevelEnum, options?: RawAxiosRequestConfig): Promise>; update(transactionChannelId: string, transactionChannel: TransactionChannel, options?: RawAxiosRequestConfig): Promise>; } export declare const GetAllDetailsLevelEnum: { readonly Basic: "BASIC"; readonly Full: "FULL"; }; export type GetAllDetailsLevelEnum = (typeof GetAllDetailsLevelEnum)[keyof typeof GetAllDetailsLevelEnum]; export declare const GetAllTransactionChannelStateEnum: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type GetAllTransactionChannelStateEnum = (typeof GetAllTransactionChannelStateEnum)[keyof typeof GetAllTransactionChannelStateEnum]; export declare const GetByIdDetailsLevelEnum: { readonly Basic: "BASIC"; readonly Full: "FULL"; }; export type GetByIdDetailsLevelEnum = (typeof GetByIdDetailsLevelEnum)[keyof typeof GetByIdDetailsLevelEnum];