import { z } from 'zod'; import type { Command, CommandMeta } from './command-types.js'; declare const schema: z.ZodObject<{}, z.core.$strict>; declare const execute: Command['execute']; declare const meta: CommandMeta; export { execute, meta, schema };