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