import * as React from "react"; export interface CardProps { /** Card title*/ title?: string; /** Size to choose from default and small */ size?: "default" | "small"; /** Extra options to be rendered inside header */ extra?: React.ReactNode; boxShadow?: boolean; /** When hovered a box shadow will appear */ hoverable?: boolean; /** Custom styles to modfiy the wrapper */ style?: React.CSSProperties; bordered?: boolean; /** Header background color. */ headerBackground?: string; children: React.ReactNode | React.ReactNode[]; } export declare const Card: ({ title, size, extra, hoverable, boxShadow, style, bordered, headerBackground, children, ...rest }: CardProps) => JSX.Element; export default Card;