export declare type Placements = "left" | "top" | "right" | "bottom" | "topLeft" | "topRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | "bottomRight" | "bottomLeft";
export default function getPlacement(placement: Placements, offset?: [number, number] | number): {
    at: string;
    my: string;
} | null;
