import React from "react"; export type CardProps = React.HTMLAttributes & { fullsize?: boolean; }; export default function Card({ fullsize, children, ...props }: CardProps): React.JSX.Element;