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