import React from 'react'; import { ButtonProps } from '@mui/material'; interface Props extends ButtonProps { expanded?: boolean; text?: string; } declare const ExpandButton: React.FC; export { ExpandButton };