import { Size } from '../types';
/**
 * get the element's bounding size
 * @param ele dom element
 * @returns the element width and height
 */
export declare function getContainerSize(ele: HTMLElement): Size;
