import { FC } from 'react'; import { LayerProps } from '../layer/layer'; import { RepositionProps } from './reposition'; export interface RepositionPopoverProps extends LayerProps, RepositionProps { /** Controls if the overlay should be transparent or has a slight black shade. */ hasVisibleOverlay?: boolean; /** Specify a different layer id to tie the dropdown to. */ layerRootId?: string; onRequestClose?: () => void; } export declare const RepositionPopover: FC;