import { RangeSelection } from 'lexical'; import { BoxProps } from '@mui/material'; interface CommonProps { placement?: 'right' | 'bottom-start'; } interface SelectionPopperProps extends CommonProps, BoxProps { selection: RangeSelection | null | undefined; } interface CursorPopperProps extends CommonProps, BoxProps { range: Range | null | undefined; } export declare function SelectionPopper({ selection, placement, children, ...rest }: SelectionPopperProps): import("react/jsx-runtime").JSX.Element | null; export declare function CursorPopper({ range, placement, children, ...rest }: CursorPopperProps): import("react/jsx-runtime").JSX.Element | null; export {};