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