import { IContext, IResponse } from '../../types'; import { IGenAiAgent } from '..'; export interface IRollbackAgentVersionApiResponse { agent: IGenAiAgent; } export interface IRollbackAgentVersionApiRequest { agent_uuid: string; version_uuid: string; } export type RollbackAgentVersionResponse = IResponse; export declare const rollbackAgentVersion: ({ httpClient }: IContext) => ({ agent_uuid, version_uuid }: IRollbackAgentVersionApiRequest) => Promise>;