import { RecipeVariants } from '@vanilla-extract/recipes'; import { TextProps } from "../Text"; import * as styles from './Item.css'; type TextItemProps = Omit & { children: string; }; export type ItemProps = RecipeVariants & { children: string; spacing?: 'small' | 'medium'; textVariant?: TextProps['variant']; } & TextItemProps; export declare const Item: ({ children, variant, spacing, textVariant, style, ...rest }: ItemProps) => import("react/jsx-runtime").JSX.Element; export {};