import { type AuthenticatedRequest } from '@n8n/db'; import type { PublicAPIEndpoint } from '../../shared/handler.types'; type GetDiscoverRequest = AuthenticatedRequest<{}, {}, {}, { include?: string; resource?: string; operation?: string; }>; type DiscoverHandlers = { getDiscover: PublicAPIEndpoint; }; declare const discoverHandlers: DiscoverHandlers; export = discoverHandlers;