/**
 * CLI commands for interacting with Confluence comments
 */
import { Command } from 'commander';
/**
 * Register comments-related commands with the CLI
 *
 * @param program - Commander program to register commands with
 */
declare function register(program: Command): void;
declare const _default: {
    register: typeof register;
};
export default _default;
