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