import { PopoverPlacementBasic } from '../components/Popover'; export type PlacementBasic = 'top' | 'bottom' | 'right' | 'left'; export type PlacementVariation = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'right-start' | 'right-end' | 'left-start' | 'left-end'; export type Placement = PlacementBasic | PlacementVariation | 'auto'; export declare const getPlacement: (placement: Placement) => PopoverPlacementBasic; export declare const getPlacements: (placements?: Placement | PlacementBasic[], placeStartByDefault?: boolean) => "auto" | "left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end" | PopoverPlacementBasic[] | undefined; //# sourceMappingURL=getPopoverPlacement.d.ts.map