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