import { HTMLProps, PropsWithChildren } from 'react'; import { ThemeColorVariables } from '@dreipol/t3-react-theme'; export type CardProps = PropsWithChildren, 'ref' | 'color' | 'children'> & { /** * Set custom color */ color?: ThemeColorVariables; /** * Render in elevated mode */ elevated?: boolean; /** * Render outline of the card */ outlined?: boolean; }>; export declare const Card: (props: Omit, "color" | "children" | "ref"> & { /** * Set custom color */ color?: ThemeColorVariables | undefined; /** * Render in elevated mode */ elevated?: boolean | undefined; /** * Render outline of the card */ outlined?: boolean | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes) => import("react").ReactElement> | null;