import { RtspConfig } from '../components/rtsp-session';
import { RtspPipeline } from './rtsp-pipeline';
/**
 * RtspMjpegPipeline
 *
 * A pipeline that can process JPEG RTP data, and converts it to streaming
 * motion JPEG format (sequence of JPEG images).
 *
 * The following handlers can be defined:
 * - all handlers from the RtspPipeline
 */
export declare class RtspMjpegPipeline extends RtspPipeline {
    constructor(rtspConfig?: RtspConfig);
}
