/** * 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'; interface IProps extends React.BaseHTMLAttributes { children?: React.ReactNode; /** * Value displayed that describes the card */ description?: React.ReactText; /** * Flag to indicate if card should be the `horizontal` variant */ horizontal?: boolean; /** * Icon to display when card is `horizontal` */ horizontalSymbol?: string; /** * Path or url for click through */ href?: string; /** * Callback for when card is clicked on */ onClick?: (event: React.MouseEvent | React.KeyboardEvent) => void; /** * Callback for when a keyboard key pressed on a card */ onKeyDown?: (event: React.KeyboardEvent) => void; /** * Path to spritemap for icon symbol. */ spritemap?: string; /** * Title for bottom-left icon. */ stickerTitle?: string; /** * Value displayed for the card's title */ title?: string; } export declare function ClayCardWithNavigation({ 'aria-label': ariaLabel, children, description, horizontal, horizontalSymbol, href, onClick, onKeyDown, spritemap, stickerTitle, title, ...otherProps }: IProps): React.JSX.Element; export {};