type RectKey = 'top' | 'left' | 'right' | 'bottom' | 'width' | 'height'; export type Rect = { [key in RectKey]: number; }; export declare const getRect: (element: { current: Element | undefined | null; }) => Rect; export default getRect;