import type { AgentItemDto, PaginatedResult } from '@redonvn/redai-cli-sdk'; import type { RedaiCliConfig } from '../auth/store'; export type { AgentItemDto as AgentItem }; type AgentCfg = Pick; export declare function fetchAgentsPage(cfg: AgentCfg, page: number, limit?: number): Promise>; /** Compat: load first page only */ export declare function listAgents(cfg: AgentCfg, limit?: number): Promise;