/** * 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'; declare type ContainerAspectRatioType = '1/1' | '3/2' | '4/3' | '8/5' | '16/9'; declare type Props = { /** * AspectRatio content. */ children: React.ReactNode; /** * Defines a CSS class for the element. */ className?: string; /** * Contrains an image for a given Aspect Ratio. */ containerAspectRatio?: ContainerAspectRatioType; }; declare function AspectRatio({ children, className, containerAspectRatio }: Props): React.JSX.Element; export default AspectRatio;