import { type ReactNode } from "react"; import { Types } from "@a2ui/lit/0.8"; import type { A2UIComponentProps } from "../../types/index.js"; interface CardProps extends A2UIComponentProps { node: Types.AnyComponentNode & { type: "Card"; }; children?: ReactNode; } export declare function Card({ children }: CardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Card.d.ts.map