import React from 'react'; import { FlintItem as FlintItemElement } from '@getufy/flint-ui/item/flint-item'; /** * Root container for displaying content with media, title, description, and actions. A versatile flex row that adapts to icons, avatars, images, and action buttons. * * @slot (default) - Accepts `flint-item-header`, `flint-item-media`, `flint-item-content`, `flint-item-actions`, `flint-item-footer`, and any other elements. */ export interface FlintItemProps extends React.HTMLAttributes { /** * Visual style of the item. * Allowed values: 'default' | 'outline' | 'muted' */ variant?: 'default' | 'outline' | 'muted'; /** * Size preset controlling padding and gap. * Allowed values: 'default' | 'sm' | 'xs' */ size?: 'default' | 'sm' | 'xs'; } export declare const FlintItem: React.ForwardRefExoticComponent>;