import { z } from 'zod';
import { BaseHCS10QueryTool } from './base-hcs10-tools';
import { HCS10QueryToolParams } from './hcs10-tool-params';
declare const ListUnapprovedConnectionRequestsZodSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
/**
 * Lists all connection requests that are not fully established
 */
export declare class ListUnapprovedConnectionRequestsTool extends BaseHCS10QueryTool<typeof ListUnapprovedConnectionRequestsZodSchema> {
    name: string;
    description: string;
    specificInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
    constructor(params: HCS10QueryToolParams);
    protected executeQuery(): Promise<unknown>;
}
export {};
