import type { PolymorphicComponent } from "../types/helpers";
import { ShadowVariant } from "../types/variants";
import { FlexItem } from "./FlexItem";
/** @alpha */
export interface CardProps {
/** The type of shadow to apply to the card */
shadow?: ShadowVariant;
}
/**
* `Card` is a flexible container based on {@link FlexItem} that provides a
* card-like visual presentation with optional shadow variants.
*
* @example Basic usage
*
* ```tsx
* This is a card with a moderate shadow;
* ```
*
* @example With different shadows
*
* ```tsx
*
*
* subtle shadows
*
*
* moderate shadows
*
*
* puffy shadows
*
* ;
* ```
*
* @alpha
*/
export declare const Card: PolymorphicComponent;
//# sourceMappingURL=Card.d.ts.map