import { Autocomplete as AutocompletePrimitive } from '@base-ui/react/autocomplete'; import { type ReactNode } from 'react'; export interface CommandItemProps extends AutocompletePrimitive.Item.Props { /** Icon rendered at the start of the item. */ leadingIcon?: ReactNode; /** Icon rendered at the end of the item (e.g. a `Kbd` shortcut hint). */ trailingIcon?: ReactNode; } export declare const CommandItem: { ({ className, children, value: providedValue, leadingIcon, trailingIcon, disabled, ...props }: CommandItemProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; }; //# sourceMappingURL=command-item.d.ts.map