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