import { Dimensions } from '../types';
/**
 * Return the dimensions of the element, if fallback is true we should retrieve this information in another way
 */
export declare const getCssDimensions: (element: Element) => Dimensions & {
    fallback: boolean;
};
