import * as React from "react"; import { type VariantProps } from "class-variance-authority"; import { Separator } from "./separator"; declare function ItemGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ItemSeparator({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare const itemVariants: (props?: ({ variant?: "default" | "outline" | "muted" | null | undefined; size?: "default" | "sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Item({ className, variant, size, asChild, ...props }: React.ComponentProps<"div"> & VariantProps & { asChild?: boolean; }): import("react/jsx-runtime").JSX.Element; declare const itemMediaVariants: (props?: ({ variant?: "default" | "image" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function ItemMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps): import("react/jsx-runtime").JSX.Element; declare function ItemContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ItemTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ItemDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element; declare function ItemActions({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ItemHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ItemFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, ItemTitle, ItemDescription, ItemHeader, ItemFooter, }; /** * [WHO]: Item layout primitives for list rows, media slots, and metadata. * [FROM]: React, registry/basic/separator, registry/lib/utils. * [TO]: sparkdesign package consumers; Showcase; CLI registry copies. * [HERE]: registry/basic/item.tsx — tokenized shadcn-derived item primitive. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */