import { Command as CommandPrimitive } from 'cmdk'; import * as React from 'react'; declare const Command: React.ForwardRefExoticComponent & { label?: string; shouldFilter?: boolean; filter?: (value: string, search: string) => number; defaultValue?: string; value?: string; onValueChange?: (value: string) => void; loop?: boolean; vimBindings?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandInput: React.ForwardRefExoticComponent, "onChange" | "value" | "type"> & { value?: string; onValueChange?: (search: string) => void; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandList: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandEmpty: React.ForwardRefExoticComponent & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandGroup: React.ForwardRefExoticComponent, "value" | "heading"> & { heading?: React.ReactNode; value?: string; forceMount?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandSeparator: React.ForwardRefExoticComponent & { alwaysRender?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandItem: React.ForwardRefExoticComponent, "onSelect" | "disabled" | "value"> & { disabled?: boolean; onSelect?: (value: string) => void; value?: string; forceMount?: boolean; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const CommandShortcut: { ({ className, ...props }: React.HTMLAttributes): React.JSX.Element; displayName: string; }; export type CommandProps = React.ComponentPropsWithoutRef; export type CommandInputProps = React.ComponentPropsWithoutRef; export type CommandListProps = React.ComponentPropsWithoutRef; export type CommandEmptyProps = React.ComponentPropsWithoutRef; export type CommandGroupProps = React.ComponentPropsWithoutRef; export type CommandItemProps = React.ComponentPropsWithoutRef; export type CommandSeparatorProps = React.ComponentPropsWithoutRef; export type CommandShortcutProps = React.HTMLAttributes; export { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }; //# sourceMappingURL=Command.d.ts.map