declare const _default: (targetTop: number, targetLeft: number, elementRect: Partial, container?: Element | undefined) => { top: boolean; right: boolean; bottom: boolean; left: boolean; }; /** * @param {number} targetTop Desired top position of the element * @param {number} targetLeft Desired left position of the element * @param {Partial} elementRect Element bounding client rect * @param {Element} container Bounding box of the element where it will placed, if not provided will defaulted to `window` * @returns {Object} Object containing information if the element top, right, bottom, and left position are out of their bounding box * @description Check desired element position to be placed is out of bound or not. */ export default _default;