export interface CardRowProps {
    /**
     * The title of the row.
     */
    title: string;
    /**
     * The subtitle of the row.
     */
    subtitle?: string;
    /**
     * If `true`, title and subtitle are shown side by side.
     */
    horizontal?: boolean;
    /**
     * If `true`, the content will be monospaced.
     */
    monospaced?: boolean;
}
