/** * Tool: discover_project_resources * Aggregates and discovers all available resources across all connections in a project * This is a high-level discovery tool that shows what data sources are available for investigation */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const DiscoverProjectResourcesInputSchema: z.ZodObject<{ project_uuid: z.ZodOptional; telemetry_type_filter: z.ZodOptional; connection_type_filter: z.ZodOptional; }, "strip", z.ZodTypeAny, { project_uuid?: string | undefined; telemetry_type_filter?: string | undefined; connection_type_filter?: string | undefined; }, { project_uuid?: string | undefined; telemetry_type_filter?: string | undefined; connection_type_filter?: string | undefined; }>; export type DiscoverProjectResourcesInput = z.infer; /** * Discover all available resources across project connections */ export declare function discoverProjectResources(services: ToolServices, args: unknown): Promise; export {};