import { BaseHederaQueryTool, HederaAgentKit, GenericPluginContext } from 'hedera-agent-kit';
import { Bee } from '@ethersphere/bee-js';
import { z } from 'zod';
import { ToolResponse } from '../utils';
import { SwarmConfig } from '../config';

declare const UpdateFeedSchema: z.ZodObject<{
    data: z.ZodString;
    memoryTopic: z.ZodString;
    postageBatchId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    data: string;
    memoryTopic: string;
    postageBatchId?: string | undefined;
}, {
    data: string;
    memoryTopic: string;
    postageBatchId?: string | undefined;
}>;
export declare class UpdateFeedTool extends BaseHederaQueryTool<typeof UpdateFeedSchema> {
    name: string;
    description: string;
    namespace: string;
    specificInputSchema: z.ZodObject<{
        data: z.ZodString;
        memoryTopic: z.ZodString;
        postageBatchId: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        data: string;
        memoryTopic: string;
        postageBatchId?: string | undefined;
    }, {
        data: string;
        memoryTopic: string;
        postageBatchId?: string | undefined;
    }>;
    bee: Bee;
    config: SwarmConfig;
    constructor(params: {
        hederaKit: HederaAgentKit;
        config: SwarmConfig;
        logger?: GenericPluginContext['logger'];
        bee: Bee;
    });
    protected executeQuery(input: z.infer<typeof UpdateFeedSchema>): Promise<ToolResponse | string>;
}
export {};
