import { BoxProps } from '@mui/material'; type ShouldAbort = boolean; export type OptionsPopoverOption = { id: string | number; label: string; active?: boolean; disabled?: boolean; onClick?: (option: OptionsPopoverOption, section: OptionsPopoverSection) => void | ShouldAbort; }; export type OptionsPopoverSection = { header?: string; options: OptionsPopoverOption[]; }; export type OptionsPopoverProps = Omit & { content: OptionsPopoverSection[]; onChange?: (option: OptionsPopoverOption, section: OptionsPopoverSection) => void; defaultIndex?: string | number; }; export declare function OptionsPopover(props: OptionsPopoverProps): import("react/jsx-runtime").JSX.Element; export {};