import { ActionResultSimple, RunActionParams } from "@memberjunction/actions-base";
import { BaseAgentManagementAction } from "./base-agent-management.action";
/**
 * Lists AI agents with optional filtering.
 * This action is restricted to the Agent Manager agent only.
 *
 * @example
 * ```typescript
 * const result = await runAction({
 *   ActionName: 'List Agents',
 *   Params: [
 *     { Name: 'IncludeInactive', Value: 'false' }, // Optional, default false
 *     { Name: 'ParentID', Value: 'parent-agent-id' }, // Optional filter
 *     { Name: 'TypeID', Value: 'agent-type-id' } // Optional filter
 *   ]
 * });
 * // Returns Agents array in output params
 * ```
 */
export declare class ListAgentsAction extends BaseAgentManagementAction {
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
}
export declare function LoadListAgentsAction(): void;
//# sourceMappingURL=list-agents.action.d.ts.map