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