export declare function getAllStyles(element: any): CSSStyleDeclaration;
export declare function getStyle(element: any, prop: any): string;
export declare function isStaticPositioned(element: any): boolean;
export declare function getOffsetParent(element: any): any;
export declare function getOffset(element: any, round: any): {
    height: any;
    width: any;
    top: any;
    bottom: any;
    left: any;
    right: any;
};
export declare function getPosition(element: any, round: any): any;
export declare function getPositionElements(hostElement: any, targetElement: any, placement: any, appendToBody: any): {
    'height': any;
    'width': any;
    'top': number;
    'bottom': any;
    'left': number;
    'right': any;
};
