import type { LogStreamingRequest } from '../../../types'; import type { PublicAPIEndpoint } from '../../shared/handler.types'; type LogStreamingHandlers = { getEventTypes: PublicAPIEndpoint; getDestinations: PublicAPIEndpoint; getDestination: PublicAPIEndpoint; createDestination: PublicAPIEndpoint; updateDestination: PublicAPIEndpoint; testDestination: PublicAPIEndpoint; deleteDestination: PublicAPIEndpoint; }; declare const logStreamingHandlers: LogStreamingHandlers; export = logStreamingHandlers;