export declare enum anchorType { CENTER = "center", TOP = "top", 'TOP-LEFT' = "top-left", 'TOP-RIGHT' = "top-right", BOTTOM = "bottom", 'BOTTOM-LEFT' = "bottom-left", 'BOTTOM-RIGHT' = "bottom-right", 'BOTTOM-CENTER' = "bottom-center", LEFT = "left", RIGHT = "right" } export declare const anchorTranslate: { center: string; top: string; 'top-left': string; 'top-right': string; bottom: string; 'bottom-left': string; 'bottom-right': string; 'bottom-center': string; left: string; right: string; }; export declare function applyAnchorClass(element: HTMLElement, anchor: string, prefix: string): void;