import { Command } from "commander";
import { ExpertCommandOptions } from "./index.js";
/**
 * Options for the ls command
 */
interface LsCommandOptions extends ExpertCommandOptions {
    type?: string;
    search?: string;
}
/**
 * List all experts from the database
 *
 * @param options Command options
 */
export declare function listExperts(options: LsCommandOptions): Promise<void>;
/**
 * Register the ls command with the expert command group
 *
 * @param program The commander program or parent command
 */
export declare function registerLsCommand(program: Command): void;
export {};
