import * as z from "zod"; export type RBACRoleV2 = { /** * Description of the purpose for the RBAC role */ description?: string | undefined; /** * Unique identifier of the RBAC role */ id: string; /** * Name of the RBAC role */ name: string; /** * Unique human-readable slug for the RBAC role */ slug: string; }; /** @internal */ export declare const RBACRoleV2$inboundSchema: z.ZodType; /** @internal */ export type RBACRoleV2$Outbound = { description?: string | undefined; id: string; name: string; slug: string; }; /** @internal */ export declare const RBACRoleV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RBACRoleV2$ { /** @deprecated use `RBACRoleV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RBACRoleV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RBACRoleV2$Outbound` instead. */ type Outbound = RBACRoleV2$Outbound; } //# sourceMappingURL=rbacrolev2.d.ts.map