import InputStreamType from './InputStreamType';
/**
 * @export
 * @class InputStreamTypeResponse
 */
export declare class InputStreamTypeResponse {
    /**
     * The type of the input stream
     * @type {InputStreamType}
     * @memberof InputStreamTypeResponse
     */
    type?: InputStreamType;
    constructor(obj?: Partial<InputStreamTypeResponse>);
}
export default InputStreamTypeResponse;
