import { type UiNode } from "../internal.ts"; type CardProps = { /** * The content to be displayed inside the card. * Can include text or other UI components. */ children?: UiNode; }; /** * A card-like container. * * Can hold various types of content. Often used to group related * information. * * @example * ```tsx * * Hello, World! * * ``` * */ export declare function Card(props: CardProps): UiNode; export {};