import { IResponse, IContext } from '../../types'; export interface IDeleteAgentApiRequest { agent_uuid: string; } export type DeleteAgentResponse = IResponse; export declare const deleteAgent: ({ httpClient }: IContext) => ({ agent_uuid }: IDeleteAgentApiRequest) => Promise>;