UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

15 lines 645 B
import * as React from 'react'; import { PopperProps } from "../../models/gridBaseSlots.js"; type MenuPosition = 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top' | undefined; export interface GridMenuProps extends Pick<PopperProps, 'className' | 'onExited'> { open: boolean; target: HTMLElement | null; onClose: (event?: Event) => void; position?: MenuPosition; children: React.ReactNode; } declare function GridMenu(props: GridMenuProps): React.JSX.Element; declare namespace GridMenu { var propTypes: any; } export { GridMenu };