export default PropField; declare function PropField({ onChange, onPress, knob }: { onChange: any; onPress: any; knob: any; }): import("react/jsx-runtime").JSX.Element; declare namespace PropField { namespace propTypes { let knob: PropTypes.Validator; label: PropTypes.Requireable; value: PropTypes.Requireable; hideLabel: PropTypes.Requireable; type: PropTypes.Requireable; }>>>; let onChange: PropTypes.Validator<(...args: any[]) => any>; let onPress: PropTypes.Validator<(...args: any[]) => any>; } } import PropTypes from 'prop-types';