import { ReactElement } from "react"; export interface CardProps { width: string; children: string | ReactElement; } export declare const Card: ({ width, children }: CardProps) => JSX.Element;