import { AuthConfig } from '../components/auth';
import { RtspConfig } from '../components/rtsp-session';
import { RtspMjpegPipeline } from './rtsp-mjpeg-pipeline';
interface RtspAuthConfig {
    rtsp?: RtspConfig;
    auth?: AuthConfig;
}
/**
 * CliMjpegPipeline
 *
 * A pipeline which connects to an RTSP server over TCP and can process JPEG
 * over RTP data producing a stream of JPEG images.
 */
export declare class CliMjpegPipeline extends RtspMjpegPipeline {
    constructor(config: RtspAuthConfig);
}
export {};
