import { Rect } from '@zag-js/types';

declare function intersects(r1: Rect, r2: Rect, strict?: boolean): boolean;
declare function toRect(r: DOMRect): Rect;

export { intersects, toRect };
