import { Autocomplete as AutocompletePrimitive } from '@base-ui/react/autocomplete'; import { type RefObject } from 'react'; interface CommandContextValue { inputValue: string; hasItems: boolean; inputContainerRef: RefObject; } export declare const useCommandContext: () => CommandContextValue; export interface CommandRootProps extends Omit, 'items'> { /** * Items to be displayed and filtered by Base UI internally. * When provided, the auto-search fallback is disabled and filtering is * delegated to Base UI's built-in logic (or the user's custom `filter`). */ items?: readonly any[]; /** Additional CSS class for the panel wrapper. */ className?: string; } export declare const CommandRoot: { ({ value: providedValue, defaultValue, onValueChange, items, inline, open, autoHighlight, keepHighlight, className, children, ...props }: CommandRootProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=command-root.d.ts.map