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 LlmGrantRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; grantPermissionRequest: components.GrantPermissionRequest; }; /** @internal */ export declare const LlmGrantRequest$inboundSchema: z.ZodType; /** @internal */ export type LlmGrantRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; GrantPermissionRequest: components.GrantPermissionRequest$Outbound; }; /** @internal */ export declare const LlmGrantRequest$outboundSchema: z.ZodType; export declare function llmGrantRequestToJSON(llmGrantRequest: LlmGrantRequest): string; export declare function llmGrantRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=llmgrant.d.ts.map