import { Command } from "commander";
import { DocstoreCommandOptions } from "./index.js";
/**
 * List all docstores
 * @param options Command options
 */
export declare function listDocstores(options: DocstoreCommandOptions): Promise<void>;
/**
 * Register the list command
 * @param docstoreCommand The parent docstore command
 * @param addPathOption Function to add path option to command
 */
export declare function registerListCommand(docstoreCommand: Command, addCommonOptions: (cmd: Command) => Command): void;
