import React from 'react'; import { DefaultProps, KubedNumberSize } from '../theme'; export interface CardProps extends DefaultProps { /** Display shadow or not */ shadow?: boolean; /** Section title of the card */ sectionTitle?: React.ReactNode; /** Controls card content padding */ padding?: KubedNumberSize; /** Add effect on hover */ hoverable?: boolean; /** Style of content */ contentStyle?: React.CSSProperties; /** className of content */ contentClassName?: string; } export declare const Card: import("../utils/types").ComponentWithAs<"div", CardProps>; //# sourceMappingURL=Card.d.ts.map