import type { LogStreamingRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type LogStreamingHandlers = {
    getEventTypes: PublicAPIEndpoint<LogStreamingRequest.GetEventTypes>;
    getDestinations: PublicAPIEndpoint<LogStreamingRequest.GetDestinations>;
    getDestination: PublicAPIEndpoint<LogStreamingRequest.GetDestination>;
    createDestination: PublicAPIEndpoint<LogStreamingRequest.CreateDestination>;
    updateDestination: PublicAPIEndpoint<LogStreamingRequest.UpdateDestination>;
    testDestination: PublicAPIEndpoint<LogStreamingRequest.TestDestination>;
    deleteDestination: PublicAPIEndpoint<LogStreamingRequest.DeleteDestination>;
};
declare const logStreamingHandlers: LogStreamingHandlers;
export = logStreamingHandlers;
