import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The permissions granted by a role. */ export type PermissionSet = { /** * The scopes granted by this role. */ allow: Array; }; /** @internal */ export declare const PermissionSet$inboundSchema: z.ZodType; export declare function permissionSetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=permissionset.d.ts.map