import { Command } from "commander";
/**
 * Options for the list users command
 */
interface ListUsersOptions {
    debug?: boolean;
}
/**
 * Execute the list users command
 *
 * @param options Command line options
 */
export declare function executeListUsersCommand(options: ListUsersOptions): Promise<void>;
/**
 * Register the list users command with the CLI
 *
 * @param program The commander program
 */
export declare function registerListCommand(program: Command): void;
export {};
