/// import { CardProps } from './card.interfaces'; /** A much reusable card for any type of card-based interface */ export declare const Card: { ({ accent, children, footer, title, shadow, size, renderToolbar, spacing, status, }: CardProps): JSX.Element; defaultTheme: ({ baseColors, colors, typography, support }: import("..").CommonTheme) => [string, { backgroundColor: string; borderWidth: string; borderStyle: string; borderColor: string; textColor: string; borderRadius: string; textFontFamily: string; textFontSize: string; textFontWeight: number; textLineHeight: string; marginBottom: string; dividerColor: string; dividerStyle: string; dividerWidth: string; size: { tiny: string; small: string; medium: string; large: string; giant: string; }; spacing: { none: string; small: string; normal: string; }; shadow: string; description: { fontWeight: string; size: string; }; header: { textColor: string; textFontFamily: string; textFontSize: string; textFontWeight: number; textLineHeight: string; status: { basic: { backgroundColor: string; textColor: string; }; primary: { backgroundColor: string; textColor: string; }; info: { backgroundColor: string; textColor: string; }; success: { backgroundColor: string; textColor: string; }; warning: { backgroundColor: string; textColor: string; }; danger: { backgroundColor: string; textColor: string; }; control: { backgroundColor: string; textColor: string; }; }; }; }]; };