/**
 * List Containers command implementation
 */
import { Command } from "commander";
/**
 * Run the list command
 * @returns Result of the list operation
 */
export declare function runListCommand({ pubkey, relay, }: {
    pubkey?: string;
    relay?: string;
}): Promise<void>;
/**
 * Register the list command with the CLI
 * @param program Commander program instance
 */
export declare function registerListCommand(program: Command): void;
