import type { AiAgent } from '@base/api';
import type React from 'react';
type AgentListProps = {
    agents: AiAgent[] | undefined;
    agentsLoading: boolean;
};
export declare const AgentList: React.FC<AgentListProps>;
export {};
