/**
 * @module commands/shopify
 * @description Command definitions for working with Shopify
 */
import { Command } from "commander";
/**
 * Creates and configures the shopify command group
 *
 * @returns The configured shopify command with all subcommands
 *
 * @example
 * ```typescript
 * // Add the shopify command to a parent command
 * const program = new Command();
 * program.addCommand(createShopifyCommand());
 * ```
 */
export declare function createShopifyCommand(): Command;
