/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
export interface CardImageProps {
    /**
     * Sets additional CSS styles to the CardImageProps.
     *
     * @example
     * ```jsx
     * <CardImage style={{ borderRadius: '50%' }} src="image.jpg" />
     * ```
     */
    style?: React.CSSProperties;
    /**
     * Sets additional classes to the CardImageProps.
     *
     * @example
     * ```jsx
     * <CardImage className="custom-class" src="image.jpg" />
     * ```
     */
    className?: string;
    /**
     * Sets the source of the image.
     *
     * @example
     * ```jsx
     * <CardImage src="image.jpg" />
     * ```
     */
    src?: string;
    /**
     * Specifies an alternate text for the image.
     *
     * @example
     * ```jsx
     * <CardImage src="image.jpg" alt="Description of the image" />
     * ```
     */
    alt?: string;
}
