import type React from 'react';
import type { AiAgent } from '@base/api';
type AgentUpdateProps = {
    accessToken?: string;
    agent: AiAgent;
    characterFile: string;
    refetchAgents: () => void;
};
export declare const AgentUpdate: React.FC<AgentUpdateProps>;
export {};
