import { type AiAgent } from '@base/api';
export type RemoteAttestationProps = {
    agent: AiAgent;
};
export declare const RemoteAttestation: ({ agent }: RemoteAttestationProps) => import("react/jsx-runtime").JSX.Element;
export type DeleteAgentProps = {
    agentId: string;
    agentName: string;
    onAgentDeleted: (agentId: string) => void;
};
export declare const DeleteAgent: ({ agentId, agentName, onAgentDeleted, }: DeleteAgentProps) => import("react/jsx-runtime").JSX.Element;
type AdvancedProps = {
    agent: AiAgent;
    onAgentDeleted: (agentId: string) => void;
};
export declare const Advanced: ({ agent, onAgentDeleted }: AdvancedProps) => import("react/jsx-runtime").JSX.Element;
export {};
