import { PropsWithChildren } from "react"; export interface CardProps { label: string; className?: string; } export declare function Card({ children, label, className }: PropsWithChildren): JSX.Element;