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 LlmCheckRequest = { /** * Type of LLM resource */ resourceType: components.LlmResourceType; resourceId: string; /** * Permission role for the resource (owner > writer > reader) */ role: components.ResourceRole; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const LlmCheckRequest$inboundSchema: z.ZodType; /** @internal */ export type LlmCheckRequest$Outbound = { resourceType: string; resourceId: string; role: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const LlmCheckRequest$outboundSchema: z.ZodType; export declare function llmCheckRequestToJSON(llmCheckRequest: LlmCheckRequest): string; export declare function llmCheckRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=llmcheck.d.ts.map