import type { AiId } from './ai-id.js';
import type { AiDeploymentModificationResponseMessage } from './ai-deployment-modification-response-message.js';
/**
 * Representation of the 'AiDeploymentModificationResponse' schema.
 */
export type AiDeploymentModificationResponse = {
    id: AiId;
    message: AiDeploymentModificationResponseMessage;
} & Record<string, any>;
//# sourceMappingURL=ai-deployment-modification-response.d.ts.map