/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { cardType, cardOrientation } from './Enums';
export interface CardProps {
    /**
     * Sets the [dir](https://www.w3schools.com/tags/att_global_dir.asp) of the Card.
     */
    dir?: string;
    /**
     * Set the type of the Card.
     *
     * The supported values are:
     * * `default`
     * * `primary`
     * * `info`
     * * `success`
     * * `warning`
     * * `error`
     */
    type?: cardType | string;
    /**
     * Set the orientation of the Card.
     *
     * The supported values are:
     * * `horizontal` - Default
     * * `vertical`
     */
    orientation?: cardOrientation | string;
}
