import { type NullableString } from '../../protocol/definitions.ts'; import { type Reader } from '../../protocol/reader.ts'; import { Writer } from '../../protocol/writer.ts'; import { type IncrementalAlterConfigOperationTypes, type ConfigResourceTypeValue, type IncrementalAlterConfigOperationTypeValue } from '../enumerations.ts'; interface IncrementalAlterConfigsDeletionRequestConfig { name: string; configOperation: typeof IncrementalAlterConfigOperationTypes.DELETE; } interface IncrementalAlterConfigsModificationRequestConfig { name: string; configOperation: Exclude; value: string; } export type IncrementalAlterConfigsRequestConfig = IncrementalAlterConfigsModificationRequestConfig | IncrementalAlterConfigsDeletionRequestConfig; export interface IncrementalAlterConfigsRequestResource { resourceType: ConfigResourceTypeValue; resourceName: string; configs: IncrementalAlterConfigsRequestConfig[]; } export type IncrementalAlterConfigsRequest = Parameters; export interface IncrementalAlterConfigsResponseResult { errorCode: number; errorMessage: NullableString; resourceType: ConfigResourceTypeValue; resourceName: string; } export interface IncrementalAlterConfigsResponse { throttleTimeMs: number; responses: IncrementalAlterConfigsResponseResult[]; } export declare function createRequest(resources: IncrementalAlterConfigsRequestResource[], validateOnly: boolean): Writer; export declare function parseResponse(_correlationId: number, apiKey: number, apiVersion: number, reader: Reader): IncrementalAlterConfigsResponse; export declare const api: import("../definitions.ts").API<[resources: IncrementalAlterConfigsRequestResource[], validateOnly: boolean], IncrementalAlterConfigsResponse>; export {};