import { CommandModule } from './types';
/**
 * Command to deploy a new diamond contract with specified facets.
 *
 * Usage:
 * ```bash
 * dopstick mine [options]
 * ```
 *
 * Options:
 * - `--no-cache`: Disable caching during deployment process
 * - `--no-compile`: Skip contract compilation
 *
 * Configuration:
 * Requires a valid dopstick.config.ts file with:
 * - Contract paths
 * - Deployment settings
 * - Module specifications
 *
 * Example:
 * ```bash
 * dopstick mine
 * dopstick mine --no-cache
 * dopstick mine --no-compile
 * ```
 *
 * Output:
 * - Displays deployment progress
 * - Returns deployed diamond address on success
 */
export declare const mineCommand: CommandModule;
//# sourceMappingURL=mine.d.ts.map