import InputStream from './InputStream';
import InputStreamType from './InputStreamType';
/**
 * @export
 * @class TimecodeTrackTrimmingInputStream
 */
export declare class TimecodeTrackTrimmingInputStream extends InputStream {
    /**
     * Discriminator property for InputStream
     * @type {string}
     * @memberof TimecodeTrackTrimmingInputStream
     */
    readonly type: InputStreamType;
    /**
     * The id of the ingest input stream that should be trimmed (required)
     * @type {string}
     * @memberof TimecodeTrackTrimmingInputStream
     */
    inputStreamId?: string;
    /**
     * Defines the timecode, in SMPTE-12M format, of the frame from which the encoding should start. The frame indicated by this value will be included in the encoding (required)
     * @type {string}
     * @memberof TimecodeTrackTrimmingInputStream
     */
    startTimeCode?: string;
    /**
     * Defines the timecode, in SMPTE-12M format, of the frame at which the encoding should stop. The frame indicated by this value will be included in the encoding (required)
     * @type {string}
     * @memberof TimecodeTrackTrimmingInputStream
     */
    endTimeCode?: string;
    constructor(obj?: Partial<TimecodeTrackTrimmingInputStream>);
}
export default TimecodeTrackTrimmingInputStream;
