import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ContextsControllerGetContextRequest = { /** * Context ID */ id: string; /** * Context type */ type: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type ContextsControllerGetContextResponse = { headers: { [k: string]: Array; }; result: components.GetContextResponseDto; }; /** @internal */ export type ContextsControllerGetContextRequest$Outbound = { id: string; type: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const ContextsControllerGetContextRequest$outboundSchema: z.ZodType; export declare function contextsControllerGetContextRequestToJSON(contextsControllerGetContextRequest: ContextsControllerGetContextRequest): string; /** @internal */ export declare const ContextsControllerGetContextResponse$inboundSchema: z.ZodType; export declare function contextsControllerGetContextResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contextscontrollergetcontext.d.ts.map