import * as React from 'react'; import { StandardProps } from '..'; export interface ExpansionPanelActionsProps extends StandardProps, ExpansionPanelActionsClassKey> { /** * If `true`, the actions do not have additional margin. */ disableSpacing?: boolean; } export type ExpansionPanelActionsClassKey = 'root' | 'spacing'; /** * * Demos: * * - [Expansion Panels](https://material-ui.com/components/expansion-panels/) * * API: * * - [ExpansionPanelActions API](https://material-ui.com/api/expansion-panel-actions/) */ export default function ExpansionPanelActions(props: ExpansionPanelActionsProps): JSX.Element;