import { ReactNode } from 'react'; import { QuaternaryTypes } from '../../utils'; export interface ItemsSectionProps { items?: { id: string; content: ReactNode; }[]; variant: QuaternaryTypes; } export declare const ItemsSection: ({ items, variant }: ItemsSectionProps) => import("react").JSX.Element | null;