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