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