/** * SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ import React from 'react'; export declare const ALIGN_POSITIONS: readonly ["top", "top-left", "top-right", "bottom", "bottom-left", "bottom-right", "left", "right"]; interface IProps extends React.HTMLAttributes { /** * Position in which the tooltip will be aligned to the element. */ alignPosition?: (typeof ALIGN_POSITIONS)[number]; /** * Flag to indicate if tooltip is displayed. */ show?: boolean; } export declare const Tooltip: React.ForwardRefExoticComponent>; export {};