// Copyright (c) Meta Platforms, Inc. and affiliates.

'use client';

/**
 * @file index.ts
 * @input Imports from Item.tsx
 * @output Exports Item component and types
 * @position Component entry point; re-exported by /packages/core/src/index.ts
 */

export {Item} from './Item';
export type {ItemProps, ItemAlign, ItemDensity} from './Item';
