import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type AgentsApiV1AgentsGetRequest = {
    agentId: string;
};
/** @internal */
export declare const AgentsApiV1AgentsGetRequest$inboundSchema: z.ZodType<AgentsApiV1AgentsGetRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type AgentsApiV1AgentsGetRequest$Outbound = {
    agent_id: string;
};
/** @internal */
export declare const AgentsApiV1AgentsGetRequest$outboundSchema: z.ZodType<AgentsApiV1AgentsGetRequest$Outbound, z.ZodTypeDef, AgentsApiV1AgentsGetRequest>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace AgentsApiV1AgentsGetRequest$ {
    /** @deprecated use `AgentsApiV1AgentsGetRequest$inboundSchema` instead. */
    const inboundSchema: z.ZodType<AgentsApiV1AgentsGetRequest, z.ZodTypeDef, unknown>;
    /** @deprecated use `AgentsApiV1AgentsGetRequest$outboundSchema` instead. */
    const outboundSchema: z.ZodType<AgentsApiV1AgentsGetRequest$Outbound, z.ZodTypeDef, AgentsApiV1AgentsGetRequest>;
    /** @deprecated use `AgentsApiV1AgentsGetRequest$Outbound` instead. */
    type Outbound = AgentsApiV1AgentsGetRequest$Outbound;
}
export declare function agentsApiV1AgentsGetRequestToJSON(agentsApiV1AgentsGetRequest: AgentsApiV1AgentsGetRequest): string;
export declare function agentsApiV1AgentsGetRequestFromJSON(jsonString: string): SafeParseResult<AgentsApiV1AgentsGetRequest, SDKValidationError>;
//# sourceMappingURL=agentsapiv1agentsget.d.ts.map