import { Command } from "commander";
import { ExpertCommandOptions } from "./index.js";
interface SearchCommandOptions extends ExpertCommandOptions {
    relays?: string;
    search?: string;
    tags?: string;
}
/**
 * Search expert profiles from specified relays
 *
 * @param options Command options
 */
export declare function searchExperts(options: SearchCommandOptions): Promise<void>;
/**
 * Register the search command with the expert command group
 *
 * @param program The commander program or parent command
 */
export declare function registerSearchCommand(program: Command): void;
export {};
