import type { OverlayPlacement } from '../Overlay/useOverlay';
export declare type Placement = 'bottom' | 'bottom-left' | 'bottom-right' | 'center' | 'left' | 'left-bottom' | 'left-top' | 'right' | 'right-bottom' | 'right-top' | 'top' | 'top-left' | 'top-right';
export declare const getPlacement: (p: Placement) => OverlayPlacement;
