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