import { AuthConfig } from '../components/auth';
import { RtspConfig } from '../components/rtsp-session';
import { RtspMp4Pipeline } from './rtsp-mp4-pipeline';
interface RtspAuthConfig {
    rtsp?: RtspConfig;
    auth?: AuthConfig;
}
/**
 * CliMp4Pipeline
 *
 * A pipeline which connects to an RTSP server over TCP and process H.264/AAC
 * over RTP to produce a stream of MP4 data.
 */
export declare class CliMp4Pipeline extends RtspMp4Pipeline {
    constructor(config: RtspAuthConfig);
}
export {};
