/// <reference types="react" />
export interface CardContentProps {
    /**
     * The children of the card content.
     */
    children: React.ReactNode;
    /**
     * The number of grid columns.
     */
    columns?: number;
}
