import { FC } from 'react'; import { ExtractProps } from '@bem-react/core'; import { MessageBoxProps } from './MessageBox'; import { MessageBoxRegistry } from './MessageBox.registry/interface'; declare type PopupProps = Pick, 'anchor' | 'boundary' | 'direction' | 'mainOffset' | 'modifiers' | 'motionless' | 'onClick' | 'onClose' | 'scope' | 'secondaryOffset' | 'tailOffset' | 'viewportOffset' | 'visible' | 'zIndex'>; export declare type MessageBoxPopupProps = MessageBoxProps & PopupProps; export declare const MessageBoxPopup: FC; export {};