import { z } from 'zod'; import type { CommandMeta } from './command-types.js'; declare const schema: z.ZodObject<{ driveId: z.ZodString; itemId: z.ZodString; worksheetId: z.ZodString; address: z.ZodString; }, z.core.$strip>; declare const execute: (graph: import("../../index.js").GraphClient, params: Record) => Promise>; declare const meta: CommandMeta; export { execute, meta, schema };