@carbon/ibm-products
Version:
Carbon for IBM Products
14 lines • 455 B
TypeScript
export default CustomInput;
declare function CustomInput({ onChange, conditionState }: {
onChange: any;
conditionState: any;
}): React.JSX.Element;
declare namespace CustomInput {
namespace propTypes {
let conditionState: PropTypes.Requireable<object>;
let onChange: PropTypes.Requireable<(...args: any[]) => any>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=CustomInput.d.ts.map