import type { AllHTMLAttributes, ReactNode } from 'react'; export type CardRowProps = { children: ReactNode; } & AllHTMLAttributes; declare const CardRow: ({ children, ...props }: CardRowProps) => import("react/jsx-runtime").JSX.Element; export default CardRow; //# sourceMappingURL=CardRow.d.ts.map