import React, { ReactNode, MouseEvent } from 'react'; import { BoxProps } from '@mui/material/Box'; import { PopoverProps } from '@mui/material/Popover'; import { ListWrapper } from './style'; import { SxProps, Theme } from '@mui/material/styles'; export type DropdownI = BoxProps & { onClose: () => void; onOpen: (e: MouseEvent) => void; open: boolean; trigger: ReactNode; anchorEl: HTMLElement | null; children: ReactNode; disabled?: boolean; listWrapperSx?: SxProps; hideArrow?: boolean; onClear?: () => void; hasValue?: boolean; slotProps?: { listWrapper?: Partial>; popover?: Partial; }; }; declare function SelectDropdown(props: DropdownI): React.JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;