import { IContext, IResponse } from '../../types'; export interface IDetachAgentRouteApiRequest { parent_agent_uuid: string; child_agent_uuid: string; } export type DetachAgentRouteResponse = IResponse; export declare const detachAgentRoute: ({ httpClient }: IContext) => ({ parent_agent_uuid, child_agent_uuid }: IDetachAgentRouteApiRequest) => Promise>;