/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { z } from 'zod'; /** * Represents information about a tenant. */ export interface TenantInfo { /** * The ID of the tenant. */ id?: string; } /** * Zod schema for validating TenantInfo objects. */ export declare const tenantInfoZodSchema: z.ZodObject<{ id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; }, { id?: string | undefined; }>;