import type { ComponentPropsWithoutRef, ReactNode } from "react";
import type { VariantProps } from "class-variance-authority";
import { itemVariants } from "./variants";
export interface ItemProps extends ComponentPropsWithoutRef<"div">, VariantProps<typeof itemVariants> {
    icon?: ReactNode;
    meta?: ReactNode;
    actions?: ReactNode;
}
declare const Item: import("react").ForwardRefExoticComponent<ItemProps & import("react").RefAttributes<HTMLDivElement>>;
export default Item;
