export default InputSection;
/**
 * @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards.
 **/
declare function InputSection(props: any): JSX.Element;
declare namespace InputSection {
    namespace propTypes {
        let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        let className: PropTypes.Requireable<string>;
        let position: PropTypes.Requireable<string>;
    }
    namespace defaultProps {
        let children_1: any;
        export { children_1 as children };
        let className_1: string;
        export { className_1 as className };
        let position_1: string;
        export { position_1 as position };
    }
    let displayName: string;
}
import PropTypes from 'prop-types';
