import React from "react"; export interface CardRowProps extends React.PropsWithChildren { columns?: number; isReadable?: boolean; } export declare const CardRow: React.FC; export default CardRow;