/**
 * @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 CardSubtitleProps {
    /**
     * Sets the CardSubtitle children elements.
     *
     * @example
     * ```jsx
     * <CardSubtitle>Subtitle Text</CardSubtitle>
     * ```
     */
    children?: React.ReactNode;
    /**
     * Sets additional CSS styles to the CardSubtitle.
     *
     * @example
     * ```jsx
     * <CardSubtitle style={{ color: 'red' }}>Subtitle Text</CardSubtitle>
     * ```
     */
    style?: React.CSSProperties;
    /**
     * Sets additional classes to the CardSubtitle.
     *
     * @example
     * ```jsx
     * <CardSubtitle className="custom-class">Subtitle Text</CardSubtitle>
     * ```
     */
    className?: string;
}
