import * as React from "react"; import type { MergeElementProps } from "../typings"; interface CardBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * The variant of the card. * @default "elevated" */ variant?: "outlined" | "elevated"; } export declare type CardProps = MergeElementProps<"div", CardBaseProps>; declare type Component = { (props: CardProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const Card: Component; export default Card;