import { z } from 'zod/v4'; export declare const PERMISSION_TEMPLATE_SCHEMA: z.ZodObject<{ id: z.ZodString; role: z.ZodString; permissions: z.ZodArray, z.ZodEnum<{ glossary: "glossary"; create_branches: "create_branches"; }>]>>; description: z.ZodNullable; tag: z.ZodNullable; tagColor: z.ZodNullable; tagInfo: z.ZodNullable; isForMarketingProjects: z.ZodBoolean; doesEnableAllReadOnlyLanguages: z.ZodBoolean; }, z.core.$strip>; export type PermissionTemplate = z.infer; export declare const LIST_PERMISSION_TEMPLATES_PATH_PARAMS: z.ZodObject<{ teamId: z.ZodNumber; }, z.core.$strip>; export type ListPermissionTemplatesPathParams = z.infer; export declare const LIST_PERMISSION_TEMPLATES_RESPONSE: z.ZodObject<{ roles: z.ZodArray, z.ZodEnum<{ glossary: "glossary"; create_branches: "create_branches"; }>]>>; description: z.ZodNullable; tag: z.ZodNullable; tagColor: z.ZodNullable; tagInfo: z.ZodNullable; isForMarketingProjects: z.ZodBoolean; doesEnableAllReadOnlyLanguages: z.ZodBoolean; }, z.core.$strip>>; }, z.core.$strip>; export type ListPermissionTemplatesResponse = z.infer;