import type { AgentData } from '../sdk-types';
export interface UseAgentReturn {
    agent: AgentData | null;
    isLoading: boolean;
    error: string | null;
    refetch: () => void;
}
export declare function useAgent(): UseAgentReturn;
