/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { z } from 'zod'; /** * Represents a parameter for a messaging extension query. */ export interface MessagingExtensionParameter { /** * The name of the parameter. */ name?: string; /** * The value of the parameter. */ value?: any; } /** * Zod schema for validating MessagingExtensionParameter. */ export declare const messagingExtensionParameterZodSchema: z.ZodObject<{ name: z.ZodOptional; value: z.ZodOptional; }, "strip", z.ZodTypeAny, { value?: any; name?: string | undefined; }, { value?: any; name?: string | undefined; }>;