import { ReactNode } from 'react'; import { LidoComponentProps } from '../utils/index.js'; import { PopoverProps } from '../popover/index.js'; export type { Theme } from '../theme/index.js'; export declare enum PopupMenuVariant { small = 0, default = 1 } export declare type PopupMenuVariants = keyof typeof PopupMenuVariant; export declare type PopupMenuProps = { variant?: PopupMenuVariants; } & PopoverProps; export declare type PopupMenuItemProps = LidoComponentProps<'button', { leftDecorator?: ReactNode; rightDecorator?: ReactNode; active?: boolean; }>; //# sourceMappingURL=types.d.ts.map