import React from 'react'; import PropTypes from 'prop-types'; import { ComponentProps } from '../utils/types'; interface ExpandButtonPropsBase { expanded?: boolean; } type ExpandButtonProps = ComponentProps; declare const ExpandButton: { ({ expanded, ...otherProps }: ExpandButtonProps): React.JSX.Element; propTypes: { expanded: PropTypes.Requireable; }; }; export default ExpandButton;