/** * 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'; import { IContext } from './Context'; interface ICardProps extends IContext { /** * Flag that indicates if `active` class is applied */ active?: boolean; /** * Determines the style of the card */ displayType?: 'file' | 'image' | 'user'; /** * Flag that indicates if the card can be selectable. */ selectable?: boolean; } interface IProps extends ICardProps, React.BaseHTMLAttributes { } declare function Card({ children, horizontal, interactive, ...otherProps }: IProps): React.JSX.Element; declare namespace Card { var displayName: string; var AspectRatio: typeof import("./AspectRatio").default; var Body: typeof import("./Body").default; var Caption: typeof import("./Caption").default; var Description: typeof import("./Description").default; var Group: typeof import("./Group").default; var Row: typeof import("./Row").default; } export default Card;