import React from 'react';
import { MenuProps } from '@mui/material/Menu';
type NumberFormatterMenuProps = MenuProps & {
    /**
     * If true, the overlay can be repositioned by dragging.
     */
    draggable?: boolean;
};
/**
 * A component that can be used to configure the value in a
 * NumberFormatterContext. Updates will take effect in real-time
 * as inputs in the menu are changed.
 */
export declare const NumberFormatterMenu: React.FC<NumberFormatterMenuProps>;
export {};
