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