import { type VariantProps } from 'class-variance-authority'; import type * as React from 'react'; declare const itemVariants: (props?: ({ variant?: "default" | "outline" | "muted" | null | undefined; size?: "default" | "sm" | "xs" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const itemMediaVariants: (props?: ({ variant?: "image" | "default" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ItemProps extends React.ComponentPropsWithoutRef<'div'>, VariantProps { asChild?: boolean; } export declare function Item({ asChild, className, variant, size, ...props }: ItemProps): import("react/jsx-runtime").JSX.Element; export declare function ItemGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemSeparator({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemMedia({ className, variant, ...props }: React.ComponentPropsWithoutRef<'div'> & VariantProps): import("react/jsx-runtime").JSX.Element; export declare function ItemContent({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemHeader({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemTitle({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemDescription({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): import("react/jsx-runtime").JSX.Element; export declare function ItemActions({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export declare function ItemFooter({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; export {};