import { Command } from "commander";
import { DocstoreCommandOptions } from "../index.js";
/**
 * Options for the nostr import command
 */
interface NostrImportOptions extends DocstoreCommandOptions {
    kinds?: string;
    relays?: string;
    limit?: number;
    debug?: boolean;
}
/**
 * Import Nostr events into a docstore
 * @param author - Nostr pubkey to import events from
 * @param options - Command options
 */
export declare function importNostr(author: string, options: NostrImportOptions): Promise<void>;
/**
 * Register the nostr import command
 * @param importCommand - The parent import command
 */
export declare function registerNostrImportCommand(importCommand: Command, addCommonOptions: (cmd: Command) => Command): void;
export {};
