/**
 * Test command implementation
 */
import { Command } from 'commander';
/**
 * Run a test command
 * @param options Command options
 * @returns Test result
 */
export declare function runTest(options?: {
    verbose?: boolean;
}): string;
/**
 * Register the test command with the CLI
 * @param program Commander program instance
 */
export declare function registerTestCommand(program: Command): void;
