import { Placement, PlacementAxis } from "@react-types/overlays"; export declare type PopoverPlacement = "bottom" | "bottom-left" | "bottom-right" | "top" | "top-left" | "top-right" | "left" | "left-top" | "left-bottom" | "right" | "right-top" | "right-bottom"; export declare const getAriaPlacement: (placement?: PopoverPlacement | undefined) => Placement; export declare const getPopoverPlacementFromAxis: (placementAxis?: PlacementAxis | undefined) => PopoverPlacement; export declare const getPopoverPlacement: (ariaPlacement?: Placement | undefined) => "top" | "left" | "bottom" | "right" | "start" | "end" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | "left-top" | "left-bottom" | "right-top" | "right-bottom" | "bottom left" | "bottom right" | "bottom start" | "bottom end" | "top left" | "top right" | "top start" | "top end" | "left top" | "left bottom" | "start top" | "start bottom" | "right top" | "right bottom" | "end top" | "end bottom"; export declare const getTransformOrigin: (placement?: PopoverPlacement | undefined) => Placement | "top center" | "bottom center" | "right center" | "left center";