import { HTMLProps, PropsWithChildren } from 'react';
import { ThemeColorVariables } from '@dreipol/t3-react-theme';
export type CardProps = HTMLProps & PropsWithChildren<{
/**
* Set custom color
*/
color?: ThemeColorVariables;
/**
* Render in elevated mode
*/
elevated?: boolean;
/**
* Render outline of the card
*/
outlined?: boolean;
}>;
export declare const Card: (props: HTMLProps & {
/**
* 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;