import { default as React, ReactNode } from 'react'; import { SxProps, Theme } from '@mui/material'; export interface ExpandableSummaryWrapperProps { children: ReactNode; defaultExpanded?: boolean; expandedGridSize?: number; collapsedGridSize?: number; className?: string; ariaLabel?: string; onToggle?: (isExpanded: boolean, newGridSize: number) => void; persistState?: boolean; storageKey?: string; showToggleButton?: boolean; mobileDrawer?: boolean; showCollapseIcon?: boolean; sx?: SxProps; } declare const ExpandableSummaryWrapper: React.FC; export default ExpandableSummaryWrapper;