/// export interface Props { title?: string; titlePosition?: "center" | "right"; condensed?: boolean; className?: string; head?: any; children?: any; } declare const Card: ({ title, titlePosition, condensed, head, children, className }: Props) => JSX.Element; export default Card;