export default CustomInput; declare function CustomInput({ onChange, conditionState }: { onChange: any; conditionState: any; }): React.JSX.Element; declare namespace CustomInput { namespace propTypes { let conditionState: PropTypes.Requireable; let onChange: PropTypes.Requireable<(...args: any[]) => any>; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=CustomInput.d.ts.map