/** * InputArgumentSchema returned by the installProcess request. */ export declare class InputArgumentSchema { name: string; type: string; isRequired: boolean; hasDefault: boolean; /** * @param name Input argument name * @param type Input argument type * @param isRequired Input argument is required * @param hasDefault Input argument has default */ constructor(name: string, type: string, isRequired: boolean, hasDefault: boolean); }