import { z } from 'zod';
declare const groupSchema: z.ZodObject<{
    groupId: z.ZodString;
    name: z.ZodString;
    description: z.ZodString;
}, z.core.$strip>;
type Group = z.infer<typeof groupSchema>;
declare const roleSchema: z.ZodObject<{
    roleId: z.ZodString;
    name: z.ZodString;
    description: z.ZodString;
}, z.core.$strip>;
type Role = z.infer<typeof roleSchema>;
export { groupSchema, roleSchema };
export type { Group, Role };
