import { FC, ReactNode } from 'react'; export interface RowsProps { children?: ReactNode; variant?: 'default' | 'bubble' | 'table' | 'roles' | 'cards' | 'cards-small' | 'partners' | 'campaign'; width?: string; fullWidthCampaign?: boolean; } declare const Rows: FC; export default Rows;