export declare const useStandardAgentPlan: () => {
    data: import("../api").Plan | undefined;
    isPending: boolean;
    refetch: () => Promise<{
        data: import("../api").Plan | undefined;
    }>;
};
