import OutputType from './OutputType'; /** * @export * @class OutputTypeResponse */ export declare class OutputTypeResponse { /** * The type of the output * @type {OutputType} * @memberof OutputTypeResponse */ type?: OutputType; constructor(obj?: Partial); } export default OutputTypeResponse;