export declare enum Placement {
    Top = "top",
    Bottom = "bottom",
    Left = "left",
    Right = "right"
}
export type PlacementValue = 'left' | 'right' | 'top' | 'bottom';
