import { SxProps } from '@mui/material'; interface Props { isExpanded: boolean; onClick: () => void; sx?: SxProps; } export declare const ExpandButton: ({ isExpanded, onClick, sx }: Props) => import("react/jsx-runtime").JSX.Element; export {};