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