import { SxProps, Theme } from '@mui/material'; import { ReactNode } from 'react'; export interface ActionsProps { sx?: SxProps; children: ReactNode; } /** * Slot for the wrapper header's right-side action buttons. The * `widget-wrapper-actions` className activates the hover-fade CSS rule on * ``: action children fade in on hover (always visible on coarse- * pointer devices), and stay full-opacity when a descendant is marked with * `.active` — typically applied by toggled actions. * * The container also stops click propagation so interacting with an action * doesn't toggle the wrapper's collapse. */ export declare function Actions({ sx, children }: ActionsProps): import("react/jsx-runtime").JSX.Element; export interface OptionsProps { sx?: SxProps; children: ReactNode; } export declare function Options({ sx, children }: OptionsProps): import("react/jsx-runtime").JSX.Element;