import PropTypes from "prop-types"; import "./AttributesTools.scss"; declare const AttributesTools: { ({ selectedElement, handleChange, attributes, }: any): import("react/jsx-runtime").JSX.Element; propTypes: { attributes: PropTypes.Validator; handleChange: PropTypes.Validator<(...args: any[]) => any>; selectedElement: PropTypes.Validator; }; }; export default AttributesTools;