import { CommonArgsType } from "./args.mjs"; import { AnyCommand, createDefineCommand } from "@politty/zod"; //#region src/cli/shared/command.d.ts /** * defineCommand with global args type (CommonArgsType). * Use this for leaf commands with `run` to get type-safe access to global args. * Parent commands with only `subCommands` can use `defineCommand` from politty directly. */ export declare const defineAppCommand: ReturnType>; //#endregion