import { CardTypes } from '../utils/prop-types'; import { HuiThemesPalette } from '../themes/presets'; export type CardStyles = { color: string; bgColor: string; borderColor: string; }; export declare const getStyles: (type: CardTypes, palette: HuiThemesPalette, isShadow?: boolean) => CardStyles;