import z from "zod"; export declare const CreateTenantSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; slug: z.ZodString; }, z.core.$strip>; export declare enum TenantUserType { OWNER = 0, ADMIN = 1, MEMBER = 2 } export declare const CreateTenantUserSchema: z.ZodObject<{ tenantId: z.ZodString; userId: z.ZodString; type: z.ZodEnum; }, z.core.$strip>; export declare const GetTenantByIdSchema: z.ZodObject<{ tenantId: z.ZodString; }, z.core.$strip>; export declare const ListTenantUsersSchema: z.ZodObject<{ queries: z.ZodArray; search: z.ZodString; }, z.core.$strip>; export declare const ListUserTenantsSchema: z.ZodObject<{ userId: z.ZodString; }, z.core.$strip>;