import { ReactNode } from "react"; import { BoxProps } from "../Box"; export interface BodyProps { as?: any; [key: string]: any; } export interface CardProps extends BoxProps { cardSize?: number; bodySlot: ReactNode; bodyProps?: any; footerSlot?: ReactNode; clickable?: boolean; accentColor?: string; accentColorPlacement?: "top" | "left"; cardDisabled?: boolean; bodyDisabled?: boolean; isPlaceholder?: boolean; } export declare const Card: { ({ cardSize, bodySlot, bodyProps, footerSlot, clickable, accentColor, accentColorPlacement, cardDisabled, bodyDisabled, className, isPlaceholder, ...rest }: CardProps): JSX.Element; Group: ({ hasAccents, cardSize, gridGap, className, style, ...rest }: import("./CardGroup").CardGroupProps) => JSX.Element; };