1 | import { BasePlacement, Placement } from "@popperjs/core";
|
2 |
|
3 | export declare function getBasePlacement(placement: Placement): BasePlacement;
|
4 |
|
5 | export declare function isVerticalPlacement(side: BasePlacement): boolean;
|
6 |
|
7 | export declare function getOppositePlacement(side: BasePlacement): "bottom" | "left" | "right" | "top";
|
8 |
|
9 | export declare function getAlignment(placement: Placement): "left" | "right" | "center";
|
10 |
|
11 | export declare function getTransformOrigin(placement: Placement, arrowStyles: {
|
12 | left: string;
|
13 | top: string;
|
14 | } | undefined): string;
|