import { z } from 'zod'; import type { Result } from '../../domain/result.js'; import type { GraphClient, GraphError } from '../../infra/graph-client.js'; import type { CommandMeta } from './command-types.js'; declare const schema: z.ZodObject<{ messageId: z.ZodString; inlineImages: z.ZodOptional>; }, z.core.$strip>; declare const execute: (graph: GraphClient, params: Record) => Promise>; declare const meta: CommandMeta; export { execute, meta, schema };