import { Command } from "commander";
import { DocstoreCommandOptions } from "./index.js";
/**
 * Delete a document from a docstore
 * @param id Document ID
 * @param options Command options
 */
export declare function deleteDoc(id: string, options: DocstoreCommandOptions): Promise<void>;
/**
 * Register the delete command
 * @param docstoreCommand The parent docstore command
 * @param addPathOption Function to add path option to command
 */
export declare function registerDeleteCommand(docstoreCommand: Command, addCommonOptions: (cmd: Command) => Command): void;
