/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ declare function getArrowPosition({ overlayRegion, targetRegion, position, arrowSize, }: { overlayRegion: any; targetRegion: any; position: any; arrowSize: any; }): { position: { top: any; left: string; right?: undefined; bottom?: undefined; }; location: string; } | { position: { top: any; right: string; left?: undefined; bottom?: undefined; }; location: string; } | { position: { left: any; bottom: string; top?: undefined; right?: undefined; }; location: string; } | { position: { left: any; top: string; right?: undefined; bottom?: undefined; }; location: string; } | null; export default getArrowPosition;