import Cea608ChannelType from './Cea608ChannelType';
import InputStream from './InputStream';
import InputStreamType from './InputStreamType';
/**
 * @export
 * @class Cea608CaptionInputStream
 */
export declare class Cea608CaptionInputStream extends InputStream {
    /**
     * Discriminator property for InputStream
     * @type {string}
     * @memberof Cea608CaptionInputStream
     */
    readonly type: InputStreamType;
    /**
     * Id of the Input (required)
     * @type {string}
     * @memberof Cea608CaptionInputStream
     */
    inputId?: string;
    /**
     * Path to media file (required)
     * @type {string}
     * @memberof Cea608CaptionInputStream
     */
    inputPath?: string;
    /**
     * The channel number of the subtitle on the respective stream position (required)
     * @type {Cea608ChannelType}
     * @memberof Cea608CaptionInputStream
     */
    channel?: Cea608ChannelType;
    constructor(obj?: Partial<Cea608CaptionInputStream>);
}
export default Cea608CaptionInputStream;
