import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; import { type VariantProps } from "../../utils.js"; declare const commandItemVariants: (props?: ({ selected?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface ItemProps extends React.ComponentPropsWithoutRef, VariantProps { selected?: boolean; } declare const Item: ({ className, children, selected, ...props }: ItemProps) => React.JSX.Element; export { Item, type ItemProps };