import type { AiId } from './ai-id.js';
import type { AiDeploymentCreationResponseMessage } from './ai-deployment-creation-response-message.js';
import type { AiDeploymentUrl } from './ai-deployment-url.js';
import type { AiExecutionStatus } from './ai-execution-status.js';
import type { AiDeploymentTimeToLive } from './ai-deployment-time-to-live.js';
/**
 * Representation of the 'AiDeploymentCreationResponse' schema.
 */
export type AiDeploymentCreationResponse = {
    id: AiId;
    message: AiDeploymentCreationResponseMessage;
    deploymentUrl?: AiDeploymentUrl;
    status?: AiExecutionStatus;
    ttl?: AiDeploymentTimeToLive;
} & Record<string, any>;
//# sourceMappingURL=ai-deployment-creation-response.d.ts.map