type Side = "top" | "bottom" | "left" | "right"; type Alignment = ("start" | "end" | "center") | undefined; type PlacementProps = { side: Side; align: Alignment; }; export declare function getPlacementProps(placement: string): PlacementProps; export {};