import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CheckPermissionResponse = { /** * Whether the user has the specified permission */ allowed: boolean; }; /** @internal */ export declare const CheckPermissionResponse$inboundSchema: z.ZodType; /** @internal */ export type CheckPermissionResponse$Outbound = { allowed: boolean; }; /** @internal */ export declare const CheckPermissionResponse$outboundSchema: z.ZodType; export declare function checkPermissionResponseToJSON(checkPermissionResponse: CheckPermissionResponse): string; export declare function checkPermissionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkpermissionresponse.d.ts.map