/**
 * @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 CardHeaderProps {
    /**
     * Sets the CardHeader children elements.
     *
     * @example
     * ```jsx
     * <CardHeader>Header Content</CardHeader>
     * ```
     */
    children?: React.ReactNode;
    /**
     * Sets additional CSS styles to the CardHeader.
     *
     * @example
     * ```jsx
     * <CardHeader style={{ fontWeight: 'bold' }}>Header Content</CardHeader>
     * ```
     */
    style?: React.CSSProperties;
    /**
     * Sets additional classes to the CardHeader.
     *
     * @example
     * ```jsx
     * <CardHeader className="custom-class">Header Content</CardHeader>
     * ```
     */
    className?: string;
}
